day 8 puzzle 2 (naive and not optimized)

This commit is contained in:
2023-12-09 11:26:07 +01:00
parent 3f2f2fd741
commit 76427545d6
4 changed files with 147 additions and 2 deletions

View File

@ -0,0 +1,9 @@
package day8
import org.scalatest.funsuite.AnyFunSuite
class Puzzle2Test extends AnyFunSuite {
test("Puzzle2.solve") {
assert(Puzzle2.solve("tests_res/day8/input1.txt") == 6)
}
}