Skip to content

Instantly share code, notes, and snippets.

@veiset
Created December 10, 2014 08:42
Show Gist options
  • Save veiset/8103f9e1ea663353f773 to your computer and use it in GitHub Desktop.
Save veiset/8103f9e1ea663353f773 to your computer and use it in GitHub Desktop.
c, people = 1, range(1, 1501)
while len(people)>1:
people.pop(c)
c += 1
if c == len(people): c = 0
elif c > len(people): c = 1
print people[0]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment