Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Three Words in a Row Classic Clean Code solution in Clear category for Three Words by virtualik
def checkio(words: str) -> bool:
"""
Returns True if 3 words in a row,
if not returns False.
"""
words.split() == [words]
count = 0
for sample in words.split():
if sample.isalpha():
count += 1
else:
count = 0
if count >= 3:
break
if count >= 3:
result = True
else:
result = False
return result
#These "asserts" using only for self-checking and not necessary for auto-testing
if __name__ == '__main__':
print('Example:')
print(checkio("Hello World hello"))
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"
print("Coding complete? Click 'Check' to review your tests and earn cool rewards!")
April 20, 2020
Comments: