Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Common Words by kennylee
def checkio(first, second):
firstWords = set(first.split(','))
secondWords = set(second.split(','))
resultList = sorted(list(firstWords & secondWords))
returnString = ''
for index, word in enumerate(resultList):
if index
Dec. 5, 2017