advent-of-code-2023/answers.nix

59 lines
1 KiB
Nix
Raw Normal View History

2023-12-01 13:34:41 +00:00
{
day1 = {
part1 = "53194";
part2 = "54249";
2023-12-03 20:36:27 +00:00
checkHaskell = true;
checkBash = true;
checkRust = true;
2023-12-01 13:34:41 +00:00
};
2023-12-02 08:22:52 +00:00
day2 = {
part1 = "2406";
part2 = "78375";
2023-12-03 20:36:27 +00:00
checkHaskell = true;
checkBash = true;
checkRust = true;
2023-12-02 08:22:52 +00:00
};
2023-12-03 20:24:32 +00:00
day3 = {
part1 = "531932";
part2 = "73646890";
2023-12-03 20:36:27 +00:00
checkHaskell = true;
checkBash = false;
checkRust = false;
2023-12-03 20:24:32 +00:00
};
2023-12-04 08:29:19 +00:00
day4 = {
part1 = "20667";
part2 = "5833065";
checkHaskell = true;
checkBash = false;
checkRust = false;
};
2023-12-08 22:15:30 +00:00
day5 = {
part1 = "462648396";
part2 = "2520479";
checkHaskell = true;
checkBash = false;
checkRust = false;
};
day6 = {
part1 = "393120";
part2 = "36872656";
checkHaskell = true;
checkBash = false;
checkRust = false;
};
day7 = {
part1 = "250474325";
part2 = "248909434";
checkHaskell = true;
checkBash = false;
checkRust = false;
};
2023-12-09 14:11:57 +00:00
day8 = {
part1 = "21409";
part2 = "21165830176709";
checkHaskell = true;
checkBash = false;
checkRust = false;
};
2023-12-01 13:34:41 +00:00
}