Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
intersection solution in Clear category for Common Words by Cjkjvfnby
def checkio(first, second):
same_words = set(first.split(',')).intersection(second.split(','))
return ','.join(sorted(same_words))
March 2, 2014
Comments: