Explain 2-coloring.
01
01
Understand the problem
graphsbfscoloring
02
02
Attempt it yourself
Sketch your approach before reading the solution — that's what interviews test.
Stuck? AI Nudge Available
Get a conceptual hint to guide your logic without spoiling the final implementation.
03
03
Study the solution
The solution is waiting
Give it an honest attempt first — then compare your thinking with the full walkthrough.
04
04
Read the code
BFS 2-coloring
Run Playgroundfrom collections import deque
def is_bipartite(graph):
n = len(graph)
color = [0] * n # 0 = uncolored, 1 / -1 the two colors
for start in range(n):
if color[start] != 0:
continue
color[start] = 1
q = deque([start])
while q:
u = q.popleft()
for v in graph[u]:
if color[v] == 0:
color[v] = -color[u]
q.append(v)
elif color[v] == color[u]:
return False
return True
# --- demo --- adjacency lists
print(is_bipartite([[1, 3], [0, 2], [1, 3], [0, 2]])) # True (square / even cycle)
print(is_bipartite([[1, 2], [0, 2], [0, 1]])) # False (triangle / odd cycle)05
05
Join the discussion
Discussion (0)
Sign in to join the discussion.
No responses yet. Be the first to share what you think.