We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents aa677e3 + 2aae2be commit 90a0583Copy full SHA for 90a0583
src/main/kotlin/day11/day11.kt
@@ -59,8 +59,8 @@ fun answer2(input: String): Long =
59
fun main() {
60
val input = fetchAdventOfCodeInput(2024, 11)
61
println("--- Day 11: Plutonian Pebbles ---")
62
- timedFunction("Part 1") { answer1(input) }
+ timedFunction("Part 1") { answer1(input) } // 185894
63
println("\tCache size: ${cacheSize()}")
64
- timedFunction("Part 2") { answer2(input) }
+ timedFunction("Part 2") { answer2(input) } // 221632504974231
65
66
-}
+}
0 commit comments