Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Three Words by oldjaponec
def checkio(words: str) -> bool:
a = words.split(" ")
count = 0
for w in a:
if w.isalpha():
count += 1
if count >= 3:
return True
else:
count = 0
return False
Aug. 27, 2019