2024/.idea/fileTemplates/Advent of Code.kt
Matej Focko a4cc41918e
chore: initial commit
Signed-off-by: Matej Focko <me@mfocko.xyz>
2024-12-01 13:13:49 +01:00

16 lines
316 B
Kotlin

#set( $Code = "bar" )
fun main() {
fun part1(input: List<String>): Int {
return input.size
}
fun part2(input: List<String>): Int {
return input.size
}
check(part1(listOf("...")) == 1)
val input = readInput("Day$Day")
part1(input).println()
part2(input).println()
}