Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Common Words by lexin13
def checkio(first, second):
return ','.join(sorted(list(set(first.split(',')) & set(second.split(',')))))
March 8, 2016