Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
W or D solution in Uncategorized category for Three Words by bryukh
def checkio(words):
"""
Split, convert to letters and use a simple search.
"""
return 'www' in ''.join('d' if w.isdigit() else 'w' for w in words.split())
Feb. 20, 2014
Comments: