fix: Fix build issues

This commit is contained in:
Panquesito7
2020-06-26 19:37:28 -05:00
parent 3ae5043fa2
commit 3c4625f6d4

View File

@@ -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];
}