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