You are viewing a single comment's thread. Return to all comments →
import re N = int(input()) score = 0 for i in input().split(): if(len(re.findall(r"[aeiouy]", i)) %2 == 0): score += 2 else: score += 1 print(score)
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 →