Skip to content

Commit 4dd44c3

Browse files
authored
Merge branch 'master' into add-boyer-moore-majority-vote
2 parents ffa07a8 + ce9915e commit 4dd44c3

File tree

7 files changed

+843
-4
lines changed

7 files changed

+843
-4
lines changed

Algorithms.Tests/Graph/KosarajuTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public void GetRepresentativesTest()
2929
graph.AddEdge(vertex5, vertex4, 1);
3030
graph.AddEdge(vertex5, vertex6, 1);
3131

32-
// Run the agorithm and obtain the representative vertex of the SCC to which each vertex belongs.
32+
// Run the algorithm and obtain the representative vertex of the SCC to which each vertex belongs.
3333
Dictionary<Vertex<int>, Vertex<int>> result = Kosaraju<int>.GetRepresentatives(graph);
3434

3535
// Check every Vertex belongs to a SCC

0 commit comments

Comments
 (0)