Skip to content

Commit

Permalink
prepare for day 8
Browse files Browse the repository at this point in the history
  • Loading branch information
norganos committed Dec 6, 2023
1 parent bfc7ddc commit 317a0be
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/main/kotlin/de/linkel/aoc/Day08.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
package de.linkel.aoc

import de.linkel.aoc.base.AbstractLinesAdventDay
import de.linkel.aoc.base.QuizPart
import jakarta.inject.Singleton

@Singleton
class Day08: AbstractLinesAdventDay<Int>() {
override val day = 7

override fun process(part: QuizPart, lines: Sequence<String>): Int {
return 0
}
}
13 changes: 13 additions & 0 deletions src/test/kotlin/de/linkel/aoc/Day08Test.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package de.linkel.aoc

class Day08Test: AbstractDayTest<Int>() {
override val exampleA = """
""".trimIndent()
override val exampleSolutionA = 0
override val solutionA = 0

override val exampleSolutionB = 0
override val solutionB = 0

override val implementation = Day08()
}

0 comments on commit 317a0be

Please sign in to comment.