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