-
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.
day 18 and 19, as well as empty files for days 20-25
- Loading branch information
Showing
16 changed files
with
392 additions
and
83 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 Day20: AbstractLinesAdventDay<Int>() { | ||
override val day = 20 | ||
|
||
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 Day21: AbstractLinesAdventDay<Int>() { | ||
override val day = 21 | ||
|
||
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 Day22: AbstractLinesAdventDay<Int>() { | ||
override val day = 22 | ||
|
||
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 Day23: AbstractLinesAdventDay<Int>() { | ||
override val day = 23 | ||
|
||
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 Day24: AbstractLinesAdventDay<Int>() { | ||
override val day = 24 | ||
|
||
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 Day25: AbstractLinesAdventDay<Int>() { | ||
override val day = 25 | ||
|
||
override fun process(part: QuizPart, lines: Sequence<String>): Int { | ||
return 0 | ||
} | ||
} |
Oops, something went wrong.