advent-of-code-2023/answers.nix

31 lines
521 B
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-01 13:34:41 +00:00
}