1
0

Day08 2021

This commit is contained in:
2021-12-08 19:18:09 +01:00
parent 7de77107e6
commit 998c523971
4 changed files with 272 additions and 1 deletions
@@ -8,7 +8,7 @@ class Input(private val value: String) {
class Mapper(val value: List<String>) {
val ints get() = value.map { it.toInt() }
val longs get() = value.map { it.toInt() }
val longs get() = value.map { it.toLong() }
}
}