Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Three Words by erewhon
def checkio(words: str) -> bool:
import re
if re.search(r"[^0-9]+\s[^0-9]+\s[^0-9]+",words) == None:
return False
else:
return True
Nov. 6, 2019
Comments: