aboutsummaryrefslogtreecommitdiffstats
path: root/886/main.go
diff options
context:
space:
mode:
Diffstat (limited to '886/main.go')
-rw-r--r--886/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/886/main.go b/886/main.go
index d06b3b8..8979d71 100644
--- a/886/main.go
+++ b/886/main.go
@@ -60,7 +60,7 @@ func possibleBipartition(n int, dislikes [][]int) bool {
return color[u] == c
}
- //fmt.Printf("node: %d will mark color: %d\n", u, c)
+ fmt.Printf("node: %d will mark color: %d\n", u, c)
color[u] = c
for _, v := range edges[u] {
if !dfs(v, -c) {