-
Notifications
You must be signed in to change notification settings - Fork 353
/
Copy paththe_minion_game.py
35 lines (27 loc) · 927 Bytes
/
the_minion_game.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#Kevin and Stuart want to play the 'The Minion Game'.
#Game Rules
#Both players are given the same string S .
#Both players have to make substrings using the letters of the string S.
#Stuart has to make words starting with consonants.
#Kevin has to make words starting with vowels.
#The game ends when both players have made all possible substrings.
#Scoring
#A player gets +1 point for each occurrence of the substring in the string S.
#Function to find the winner
def the_minion_game(s):
vowels = 'AEIOU'
kevin = 0
stuart = 0
for i in range(len(s)):
if s[i] in vowels:
kevin += (len(s)-i)
else:
stuart += (len(s)-i)
if kevin > stuart:
print ("Kevin won the game with score:", kevin)
elif kevin < stuart:
print ("Stuart won the game with score:", stuart)
else:
print ("Draw")
s = input("Enter the String: ")
the_minion_game(s)