Advertisement
atondwal

Untitled

Nov 23rd, 2012
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. 34 def fill(Dict,Group,Point):
  2. 35 for x in Dict[Point]:
  3. 36 if(x not in Group):
  4. 37 return fill(Dict,Group.union(set(x)),x)
  5. 38 else:return Group
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement