Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Common Words by JamesNippoc
def checkio(first, second):
return ','.join(sorted([w for w in first.split(',') if w in second.split(',')]))
#These "asserts" using only for self-checking and not necessary for auto-testing
May 24, 2014
Comments: