Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
onelineonline solution in Speedy category for Common Words by timiway
def checkio(first, second):
return ",".join(sorted((set(first.split(','))&set(second.split(',')))))
#These "asserts" using only for self-checking and not necessary for auto-testing
May 16, 2014
Comments: