Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rock - Juliana's Solution. All tests passing. #19

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 23 additions & 3 deletions graphs/possible_bipartition.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,28 @@ def possible_bipartition(dislikes):
""" Will return True or False if the given graph
can be bipartitioned without neighboring nodes put
into the same partition.
Time Complexity: ?
Space Complexity: ?
Time Complexity: O(N + E)
Space Complexity: O(n)
"""
Comment on lines 5 to 10

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍 Nice BFS implementation!

pass
N = len(dislikes)
dogs = [None] * N
queued = deque()

for i in range(N):
if dogs[i] != None:
continue
queued.append((i, "Baker"))

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Baker & Jpug?

Just curious

while queued:
node, dog = queued.popleft()
puppy = "Baker"
if not dogs[node]:
dogs[node] = dog
for next in dislikes[node]:
if dogs[next] == dogs[node]:
return False
elif dogs[next] and dogs[next] != dogs[node]:
continue
elif not dogs[next] and dogs[node] == "Baker":
puppy = "Jpug"
queued.append((next, puppy))
return True