Hey, folks!
I am not a fan of sport-programming t-shirts, but surely know that some of you would like to have one. If you wanna get a t-shirt, just add yourself in Google Form. After a couple of days I will pick a person randomly from the list, and contact him/her for contacts.
Also, I didn't decide how to calculate a random seed fair enough. So, feel free to propose something :)
Cheers!
Edit 1: Guys, please, don't mess around with the doc. Now you cannot edit the doc, please, add a comment with your handle.
Edit 2: Ok, you forced me to delete Google Doc, and spend more time, thanks :) Please, add you handle again in Google Form. Pay attention, you can only add your handle once. Make sure you wrote it correctly. Also to prevent cheating, I will chose among people who participated in at least 2 competitions.
Edit 3: Seems that everybody who wanted to participate in this put nickname in form. So, we can start the lottery.
I was super lazy, so I decided not to do anything complicated. I wrote python script:
#!/usr/bin/python import random filename = "input.txt" times = 20 with open(filename) as f: lines = f.readlines() random.seed(314159265) for i in xrange(times): index = random.randint(0, len(lines) - 1) name = lines[index] print index, name[:len(name)-1]
Firstly, I picked 20 nicknames:
- 202 TooSchoolForCool
- 179 Hdz_78
- 202 TooSchoolForCool
- 259 LouisCK
- 18 serghov
- 324 krismaz
- 290 dutzul
- 188 Swift
- 86 Elk-cloner
- 233 TahaMahmoud
- 251 bnick
- 179 Hdz_78
- 168 muratt
- 107 heaton
- 6 zeulb
- 53 Prestige
- 157 bayram
- 242 Mohammad_Mohsin_COU
- 120 sampriti
- 199 gridnevvvit
Interesting that Mohammad_Mohsin_COU wrote his nickname in a wrong way, but I fixed it :)
Then I ran the same program with another filename and times=1. And the winner is: muratt. Congratulations to him!