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 2f1a318 commit e4f38adCopy full SHA for e4f38ad
aoc2024/aoc2024-kotlin/src/main/kotlin/de/havox_design/aoc2024/day23/LANParty.kt
@@ -6,7 +6,7 @@ class LANParty(private var filename: String) {
6
fun processPart1(): Any {
7
val triangles = HashSet<List<String>>()
8
9
- for ((from, neighbours) in data) {
+ for ((from, neighbours:Set<String>) in data) {
10
if (from.startsWith(CHIEF_HISTORIAN_IDENTIFIER)) {
11
for (u in neighbours) {
12
for (v in neighbours) {
0 commit comments