Created
December 10, 2014 08:42
-
-
Save veiset/8103f9e1ea663353f773 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
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