Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Intersection of 2 sets solution in Clear category for Common Words by martin.pilka
def checkio(first, second):
return ','.join(sorted(set(first.split(',')) & set(second.split(','))))
Feb. 4, 2019