Skip to content

Commit

Permalink
Added a few comments
Browse files Browse the repository at this point in the history
  • Loading branch information
elijahbigk77 committed Apr 26, 2022
1 parent dbe3b0d commit 1a5512d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion province.cc
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ std::vector<int> Province::bfs(int start) const {
// While all towns have not been visited
while (!toVisit.empty()) {

// Remove current town from queue, add to results
// Remove current town from queue and add to results
int current = toVisit.front();
toVisit.pop();
results.push_back(current);
Expand Down

0 comments on commit 1a5512d

Please sign in to comment.