Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Common Words by JingMeng
def checkio(first, second):
return ','.join(sorted(set(first.split(',')).intersection(second.split(','))))
June 21, 2019