From 3c4625f6d46c1c4a3b1af77b87bba08b761ec43d Mon Sep 17 00:00:00 2001 From: Panquesito7 Date: Fri, 26 Jun 2020 19:37:28 -0500 Subject: [PATCH] fix: Fix build issues --- backtracking/graph_coloring.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backtracking/graph_coloring.cpp b/backtracking/graph_coloring.cpp index cb0eddcd7..9417bf361 100644 --- a/backtracking/graph_coloring.cpp +++ b/backtracking/graph_coloring.cpp @@ -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]; }