mirror of
https://github.com/TheAlgorithms/C-Plus-Plus.git
synced 2026-04-15 03:10:07 +08:00
fix: Fix build issues
This commit is contained in:
@@ -47,7 +47,7 @@ void graphColoring(bool graph[V][V], int m, int color[], int v) {
|
||||
|
||||
/* A utility function to print solution */
|
||||
void printSolution(int color[]) {
|
||||
std::cout << "Following are the assigned colors\n");
|
||||
std::cout << "Following are the assigned colors\n";
|
||||
for (int i = 0; i < V; i++) {
|
||||
std::cout << color[i];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user