Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Striped Words by wojtekpaciej
VOWELS = "AEIOUY"
CONSONANTS = "BCDFGHJKLMNPQRSTVWXZ"
SEPARATORS=".,?"
def checkio(text):
result=0
# Splitting text
print("\nText: " + text)
for separator in SEPARATORS:
text=text.replace(separator," ")
words=text.split()
# Checking each word
for word in words:
if len(word)<2: continue
i=0
while i
Dec. 12, 2016