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 e79e34d commit 18b118aCopy full SHA for 18b118a
src/Day10.kt
@@ -0,0 +1,20 @@
1
+private const val DAY = 10
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) == 15)
15
+ check(part2(testInput) == 1134)
16
17
+ val input = readInput(day = DAY)
18
+ println(part1(input))
19
+ println(part2(input))
20
+}
0 commit comments