Update Cycles.java

closing Scanner in
This commit is contained in:
Alexandra Englert 2020-03-20 21:36:35 +01:00
parent 0eef7f4737
commit 7a52313e21

View File

@ -34,6 +34,7 @@ class Cycle {
end = in.nextInt();
adjacencyMatrix[start][end] = 1;
}
in.close();
}