Skip to content

Instantly share code, notes, and snippets.

@gsathya
Created July 16, 2014 18:58
Show Gist options
  • Save gsathya/a3b6ee37d8defb317210 to your computer and use it in GitHub Desktop.
Save gsathya/a3b6ee37d8defb317210 to your computer and use it in GitHub Desktop.
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