chore: add ‹no-op› comments instead of ‹TODO›
Signed-off-by: Matej Focko <me@mfocko.xyz>
This commit is contained in:
parent
f4854fa462
commit
d7b0d5adf1
2 changed files with 3 additions and 2 deletions
|
@ -8,7 +8,7 @@ class Day02(
|
||||||
}.toList()
|
}.toList()
|
||||||
|
|
||||||
override fun precompute() {
|
override fun precompute() {
|
||||||
// [TODO] Implement precomputation
|
// no-op
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun isCorrect(report: List<Int>): Boolean {
|
private fun isCorrect(report: List<Int>): Boolean {
|
||||||
|
|
|
@ -38,7 +38,8 @@ class Day03(
|
||||||
Instruction(type, value)
|
Instruction(type, value)
|
||||||
}.toList()
|
}.toList()
|
||||||
|
|
||||||
override fun precompute() { // no-op
|
override fun precompute() {
|
||||||
|
// no-op
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun part1(): Int =
|
override fun part1(): Int =
|
||||||
|
|
Loading…
Reference in a new issue