Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Translations for everyone! solution in Creative category for Striped Words by MrPod
V = "AEIOUY"
def checkio(text):
*text,=filter(str.isalpha,text.upper().translate(str.maketrans(',.?!',' ')).split())
*text,=map(lambda _:''.join(map(lambda b:'01'[b in V], _)),text)
return sum(len(i)>1and i.find('00')+i.find('11')==-2 for i in text)
March 11, 2020