Skip to content

Commit 977923d

Browse files
committed
Solve typo on day 25 puzzle
1 parent fae98a3 commit 977923d

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/main/java/com/adventofcode/flashk/day25/Snowverload.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ public Snowverload(List<String> inputs) {
2222
graph.addVertex(leftVertex);
2323
for(String rightVertex : rightVertexes) {
2424
graph.addVertex(rightVertex);
25+
graph.addEdge(leftVertex, rightVertex);
2526
}
2627
}
2728

0 commit comments

Comments
 (0)