Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Keep it simple solution in Clear category for Striped Words by StefanPochmann
def checkio(text):
text = ''.join('V' if t in 'AEIOUY' else
'C' if t.isalpha() else
'D' if t.isdigit() else
' '
for t in text.upper())
return sum('VV' not in token and
'CC' not in token and
'D' not in token and
len(token) > 1
for token in text.split())
April 18, 2015
Comments: