chore: std::endl -> \n

This commit is contained in:
David Leal 2023-07-20 14:27:01 -06:00 committed by GitHub
parent a2e3b417bd
commit 025f846e39
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -45,7 +45,7 @@ void findMinimumEdge(const int &infinity,
}
}
std::cout << i << " - " << minIndex << "\t" << graph[i][minIndex]
<< std::endl;
<< "\n";
}
}
} // namespace greedy_algorithms