You are viewing a single comment's thread. Return to all comments →
Did almost the same
string = raw_input() vw = 'aeiou'.upper() strl = len(string) kevin = sum(strl-i for i in range(strl) if string[i] in vw) stuart = strl*(strl + 1)/2 - kevin if kevin == stuart: print 'Draw' elif kevin > stuart: print 'Kevin %d' % kevin else: print 'Stuart %d' % stuart
Seems like cookies are disabled on this browser, please enable them to open this website
The Minion Game
You are viewing a single comment's thread. Return to all comments →
Did almost the same