feat: basic wrapper + days 1 to 3

This commit is contained in:
Xavier Morel
2025-04-29 19:21:48 +02:00
committed by installer
parent 6c2240960f
commit d937ef84bb
10 changed files with 181 additions and 10 deletions

View File

@@ -0,0 +1,9 @@
package days
object Day4 extends Day {
val number: Int = 4;
def part1(input: String) = "pouet"
def part2(input: String) = "pouet"
}