diff options
author | terminaldweller <devi@terminaldweller.com> | 2025-09-17 19:58:25 +0000 |
---|---|---|
committer | terminaldweller <devi@terminaldweller.com> | 2025-09-17 19:58:25 +0000 |
commit | f5e6aa26100a8b42ee1c2ad453db4a2e01269e9f (patch) | |
tree | 4b21bdadbfef2c31b1e3a16809dea9a9b850b3da /886 | |
parent | 20 (diff) | |
download | leetcode-main.tar.gz leetcode-main.zip |
Diffstat (limited to '886')
-rw-r--r-- | 886/main.go | 2 |
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) { |