aboutsummaryrefslogtreecommitdiffstats
path: root/src/15/part2
diff options
context:
space:
mode:
Diffstat (limited to 'src/15/part2')
-rw-r--r--src/15/part218
1 files changed, 18 insertions, 0 deletions
diff --git a/src/15/part2 b/src/15/part2
new file mode 100644
index 0000000..3be53a9
--- /dev/null
+++ b/src/15/part2
@@ -0,0 +1,18 @@
+--- Part Two ---
+
+Impressed, the Elves issue you a challenge: determine the 30000000th number spoken. For example,
+given the same starting numbers as above:
+
+
+ - Given 0,3,6, the 30000000th number spoken is 175594.
+ - Given 1,3,2, the 30000000th number spoken is 2578.
+ - Given 2,1,3, the 30000000th number spoken is 3544142.
+ - Given 1,2,3, the 30000000th number spoken is 261214.
+ - Given 2,3,1, the 30000000th number spoken is 6895259.
+ - Given 3,2,1, the 30000000th number spoken is 18.
+ - Given 3,1,2, the 30000000th number spoken is 362.
+
+
+Given your starting numbers, what will be the 30000000th number spoken?
+
+