Created
July 16, 2014 18:58
-
-
Save gsathya/a3b6ee37d8defb317210 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def find_min_list2(lists): | |
i = 0 | |
n = len(lists) | |
try: | |
while True: | |
for x in range(n): | |
_ = lists[x][i] | |
i += 1 | |
except IndexError: | |
return i |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment