Skip to content

Instantly share code, notes, and snippets.

@BaseCase
Last active August 29, 2015 14:05
Show Gist options
  • Save BaseCase/b62f39a4889ba3ebc0ae to your computer and use it in GitHub Desktop.
Save BaseCase/b62f39a4889ba3ebc0ae to your computer and use it in GitHub Desktop.
using a counter instead of range() in a while loop
a = [7,12,9,14,15,18,12]
b = [9,14,8,3,15,17,15]
big = []
i = 0
length = len(a)
while i < length:
big.append(max(a[i], b[i]))
i += 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment