diff options
Diffstat (limited to '2021/24/solve.c')
-rw-r--r-- | 2021/24/solve.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/2021/24/solve.c b/2021/24/solve.c index 8ab524d..72bf9de 100644 --- a/2021/24/solve.c +++ b/2021/24/solve.c @@ -3,6 +3,8 @@ #include <stdlib.h> #include <time.h> +// Non-trial-and-error solution in solve.js + static const int xs[] = { 14, 14, 14, 12, 15, -12, -12, 12, -7, 13, -8, -5, -10, -7 }; static const int ys[] = { 14, 2, 1, 13, 5, 5, 5, 9, 3, 13, 2, 1, 11, 8 }; static const int zs[] = { 1, 1, 1, 1, 1, 26, 26, 1, 26, 1, 26, 26, 26, 26 }; |