We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30e6bd2 commit 2f1a318Copy full SHA for 2f1a318
aoc2024/aoc2024-kotlin/src/main/kotlin/de/havox_design/aoc2024/day08/ResonantCollinearity.kt
@@ -25,7 +25,7 @@ class ResonantCollinearity(private var filename: String) {
25
26
@SuppressWarnings("kotlin:S3776")
27
private fun solve(allMultiples: Boolean = false): Int = buildSet {
28
- for ((_, points) in antennae) {
+ for ((_, points:List<IntPair>) in antennae) {
29
for (positionA in points) {
30
for (positionB in points) {
31
if (positionA == positionB) {
0 commit comments