day 1 puzzle 1

This commit is contained in:
2023-12-01 09:07:15 +01:00
parent 0f65316dc1
commit 0ce0be9a6d
5 changed files with 1046 additions and 0 deletions

View File

@ -0,0 +1,9 @@
package day1
import org.scalatest.funsuite.AnyFunSuite
class Puzzle1Tester extends AnyFunSuite {
test("Puzzle1.loadInput") {
assert(Puzzle1.loadInput("tests_res/day1/input1.txt") == 142)
}
}