Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Boring solution in Clear category for Three Words by Vulwsztyn
def checkio(words):
s=0
for i in words.split():
if ord(i[0])>60:
s+=1
if s>2:
return True
break
else:
s=0
if (s<3):
return False
Oct. 14, 2016