Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for Common Words by juestr
def checkio(first, second):
w1 = first.split(',')
w2 = second.split(',')
return ','.join(sorted(set(w1).intersection(set(w2))))
April 18, 2019