Skip to content

Commit bd19f91

Browse files
committed
fix sonar issues
1 parent a88bf74 commit bd19f91

File tree

1 file changed

+1
-1
lines changed
  • aoc2024/aoc2024-kotlin/src/main/kotlin/de/havox_design/aoc2024/day25

1 file changed

+1
-1
lines changed

aoc2024/aoc2024-kotlin/src/main/kotlin/de/havox_design/aoc2024/day25/CodeChronicle.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ class CodeChronicle(private var filename: String) {
66
private val data = parseInput(getResourceAsText(filename))
77

88
fun processPart1(): Any {
9-
val (locks, keys) = data
9+
val (locks: List<Quintet<Int, Int, Int, Int, Int>>, keys:List<Quintet<Int, Int, Int, Int, Int>>) = data
1010

1111
return locks
1212
.sumOf { lock ->

0 commit comments

Comments
 (0)