Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Common Words solution in Uncategorized category for Common Words by vvm70
def checkio(first, second):
return ','.join(sorted(set(first.split(',')) & set(second.split(','))))
April 28, 2020