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