-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
prepared project for the next 3 days
- Loading branch information
Showing
8 changed files
with
86 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 Day10: AbstractLinesAdventDay<Int>() { | ||
override val day = 10 | ||
|
||
override fun process(part: QuizPart, lines: Sequence<String>): Int { | ||
return 0 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 Day11: AbstractLinesAdventDay<Int>() { | ||
override val day = 11 | ||
|
||
override fun process(part: QuizPart, lines: Sequence<String>): Int { | ||
return 0 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 Day12: AbstractLinesAdventDay<Int>() { | ||
override val day = 12 | ||
|
||
override fun process(part: QuizPart, lines: Sequence<String>): Int { | ||
return 0 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package de.linkel.aoc | ||
|
||
class Day10Test: 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 = Day10() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package de.linkel.aoc | ||
|
||
class Day11Test: 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 = Day11() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package de.linkel.aoc | ||
|
||
class Day12Test: 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 = Day12() | ||
} |