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