We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b190829 commit d13ab11Copy full SHA for d13ab11
06_breadth-first_search/python/01_breadth-first_search.py
@@ -21,7 +21,7 @@ def search(name):
21
while search_queue:
22
person = search_queue.popleft()
23
# Only search this person if you haven't already searched them.
24
- if not person in searched:
+ if person not in searched:
25
if person_is_seller(person):
26
print person + " is a mango seller!"
27
return True
0 commit comments