You are viewing a single comment's thread. Return to all comments →
Seriously ... 30 points for spotting ++score .
Ps:
def has_vowel(letters): v_sum =sum([['a', 'e', 'i', 'o', 'u', 'y'].count(l) for l in letters]) return 2 if v_sum %2 == 0 else 1 def score_words(words): return sum([has_vowel(w) for w in [[*map(str,word)] for word in words]])
Seems like cookies are disabled on this browser, please enable them to open this website
Words Score
You are viewing a single comment's thread. Return to all comments →
Seriously ... 30 points for spotting ++score .
Ps: