vichitr / HacktoberfestForBeginners

New to open-source? Contribute here!!!
MIT License
102 stars 361 forks source link

Create Word_Score.py (A problem statement in HackerRank) #562

Closed hereisSwapnil closed 2 years ago

hereisSwapnil commented 2 years ago

Consider that vowels in the alphabet are a, e, i, o, u and y. Function score_words takes a list of lowercase words as an argument and returns a score as follows: The score of a single word is if the word contains an even number of vowels. Otherwise, the score of this word is . The score for the whole list of words is the sum of scores of all words in the list. Debug the given function score_words such that it returns a correct score. Your function will be tested on several cases by the locked template code.

Input Format The input is read by the provided locked code template. In the first line, there is a single integer denoting the number of words. In the second line, there are space-separated lowercase words.

Constraints Each word has at most letters and all letters are English lowercase letters

Output Format The output is produced by the provided and locked code template. It calls function score_words with the list of words read from the input as the argument and prints the returned score to the output.