You are viewing a single comment's thread. Return to all comments →
short and 'simple'
def score_words(words): return sum(sum(char in 'aeiouy' for char in word) % 2 or 2 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 →
short and 'simple'