Hello Programmers/Coders, Today we are going to share solutions of Programming problems of HackerRank of Programming Language Python. At Each Problem with Successful submission with all Test Cases Passed, you will get an score or marks. And after solving maximum problems, you will be getting stars. This will highlight your profile to the recruiters.
In this post, you will find the solution for The Minion Game in Python-HackerRank Problem. We are providing the correct and tested solutions of coding problems present on HackerRank. If you are not able to solve any problem, then you can take help from our Blog/website.
Use “Ctrl+F” To Find Any Questions Answer. & For Mobile User, You Just Need To Click On Three dots In Your Browser & You Will Get A “Find” Option There. Use These Option to Get Any Random Questions Answer.
Introduction To Python
Python is a widely-used, interpreted, object-oriented, and high-level programming language with dynamic semantics, used for general-purpose programming. It was created by Guido van Rossum, and first released on February 20, 1991.
Python is a computer programming language often used to build websites and software, automate tasks, and conduct data analysis. It is also used to create various machine learning algorithm, and helps in Artificial Intelligence. Python is a general purpose language, meaning it can be used to create a variety of different programs and isn’t specialized for any specific problems. This versatility, along with its beginner-friendliness, has made it one of the most-used programming languages today. A survey conducted by industry analyst firm RedMonk found that it was the most popular programming language among developers in 2020.
Link for the Problem – The Minion Game in Python – HackerRank Solution
The Minion Game in Python – HackerRank Solution
Kevin and Stuart want to play the ‘The Minion Game‘.
Game Rules
Both players are given the same string, .
Both players have to make substrings using the letters of the string .
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 .
For Example:
String = BANANA
Kevin’s vowel beginning word = ANA
Here, ANA occurs twice in BANANA. Hence, Kevin will get 2
Points.
For better understanding, see the image below:

Your task is to determine the winner of the game and their score.
Function Description
Complete the minion_game in the editor below.
minion_game has the following parameters:
- string string: the string to analyze
Prints
- string: the winner’s name and score, separated by a space on one line, or
Draw
if there is no winner
Input Format
A single line of input containing the string .
Note: The string will contain only uppercase letters: .
Constraints
Sample Input
BANANA
Sample Output
Stuart 12
Note :
Vowels are only defined as . In this problem, is not considered a vowel.
The Minion Game in Python – HackerRank Solution
def minion_game(string): # your code goes here # The Minion Game in Python - Hacker Rank Solution START player1 = 0; player2 = 0; str_len = len(string) for i in range(str_len): if s[i] in "AEIOU": player1 += (str_len)-i else : player2 += (str_len)-i if player1 > player2: print("Kevin", player1) elif player1 < player2: print("Stuart",player2) elif player1 == player2: print("Draw") else : print("Draw") # The Minion Game in Python - Hacker Rank Solution END if __name__ == '__main__': s = input() minion_game(s)
Someone essentially lend a hand to make critically articles I would state. That is the very first time I frequented your web page and to this point? I amazed with the analysis you made to make this actual put up incredible. Great process!