Skip to content

Commit 345da9e

Browse files
author
volimroze
committed
Fix clang-format issues
1 parent 8e21b25 commit 345da9e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/thealgorithms/datastructures/graphs/EdmondsAlgorithm.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ static class Edge {
2424
public static int maxWeightMatching(List<Edge> edges, int n) {
2525
// The number of nodes in the graph
2626
int[] match = new int[n];
27-
Arrays.fill(match, -1); // no match
27+
Arrays.fill(match, -1); // no match
2828

2929
// Perform the algorithm
3030
int result = 0;
@@ -67,7 +67,7 @@ public static void main(String[] args) {
6767
edges.add(new Edge(2, 3, 25));
6868
edges.add(new Edge(3, 4, 30));
6969

70-
int n = 5; // Number of vertices
70+
int n = 5; // Number of vertices
7171

7272
System.out.println("Maximum weight matching: " + maxWeightMatching(edges, n));
7373
}

0 commit comments

Comments
 (0)