We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40c6444 commit 4d780adCopy full SHA for 4d780ad
src/Day11.kt
@@ -0,0 +1,20 @@
1
+private const val DAY = 11
2
+
3
+fun main() {
4
+ fun part1(input: List<String>): Int {
5
+ return -1
6
+ }
7
8
+ fun part2(input: List<String>): Int {
9
10
11
12
+ // test if implementation meets criteria from the description, like:
13
+ val testInput = readInput(day = DAY, useTestInput = true)
14
+ check(part1(testInput) == 1656)
15
+ //check(part2(testInput) == 288957)
16
17
+ val input = readInput(day = DAY)
18
+ println(part1(input))
19
+ println(part2(input))
20
+}
0 commit comments