You are viewing a single comment's thread. Return to all comments →
XD
def jumpingOnClouds(c): i=0 index=0 while index!=len(c)-1: try: if c[index+2]==0: index+=2 i+=1 else: index+=1 i+=1 except: index+=1 i+=1 return i
Seems like cookies are disabled on this browser, please enable them to open this website
Jumping on the Clouds
You are viewing a single comment's thread. Return to all comments →
XD