Skip to content

Commit 90a0583

Browse files
authored
Merge pull request #22 from sraaphorst/D11
D11: Adding answers.
2 parents aa677e3 + 2aae2be commit 90a0583

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/kotlin/day11/day11.kt

+3-3
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ fun answer2(input: String): Long =
5959
fun main() {
6060
val input = fetchAdventOfCodeInput(2024, 11)
6161
println("--- Day 11: Plutonian Pebbles ---")
62-
timedFunction("Part 1") { answer1(input) }
62+
timedFunction("Part 1") { answer1(input) } // 185894
6363
println("\tCache size: ${cacheSize()}")
64-
timedFunction("Part 2") { answer2(input) }
64+
timedFunction("Part 2") { answer2(input) } // 221632504974231
6565
println("\tCache size: ${cacheSize()}")
66-
}
66+
}

0 commit comments

Comments
 (0)