Cleanup 2016 day 22 puzzles

This commit is contained in:
2021-12-09 15:05:31 +00:00
parent 1da63f3e9c
commit 26ef423b62
2 changed files with 69 additions and 0 deletions

7
2016/puzzle-22-02.cc Normal file
View File

@@ -0,0 +1,7 @@
#include <iostream>
auto main() -> int
{
std::cout << "Worked it out by hand: 233\n";
return 0;
}