Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Three words PL solution in Clear category for Three Words by Kacper_Kapela
def checkio(words):
count=0 #licznik dla naszych słow
for words in words.split(" "): #powtarzaj dla słow w tym samym tekscie oddzielonych spacjami
if words[0].isdigit(): #jezeli pierwsze slowa jest cyfra zwroc 0
count=0
else: #jezeli nie ,dodawaj dopoki ten waruenk nie zostanie spelniony
count+=1
if count==3: #jezeli count bedzie wynosic 3 to wypisz true
return True
return False #jezeli nie wypisz False
#These "asserts" using only for self-checking and not necessary for auto-testing
if __name__ == '__main__':
assert checkio("Hello World hello") == True, "Hello"
assert checkio("He is 123 man") == False, "123 man"
assert checkio("1 2 3 4") == False, "Digits"
assert checkio("bla bla bla bla") == True, "Bla Bla"
assert checkio("Hi") == False, "Hi"
Dec. 16, 2015