Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
CommonWords.c solution in Clear category for Common Words by trudnopodobny
def checkio(first, second):
first = set(first.split(","))
second = set(second.split(","))
third = sorted(first.intersection(second))
result = ""
for word in third:
if result: result = result+","
result = result+str(word)
return result
Oct. 9, 2018