-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path67.py
34 lines (26 loc) · 909 Bytes
/
67.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
from collections import deque
class Solution:
def isBipartite(self, graph: List[List[int]]) -> bool:
n = len(graph)
colors = [0] * n
# blue = 1
# red = -1
# there could be disconnected graphs
# hence looping through each vertex
for i in range(n):
if colors[i] != 0:
continue
queue = deque()
queue.append(i)
colors[i] = 1
while queue:
vertex = queue.popleft()
# get the neighbors of the current node
for neigh in graph[vertex]:
if colors[neigh] == 0:
colors[neigh] = -colors[vertex]
queue.append(neigh)
else:
if colors[neigh] != -colors[vertex]:
return False
return True