Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
One string ;P solution in Creative category for Common Words by RomanTT
def checkio(first, second):
return ','.join(sorted([i for i in first.split(',') if i in second.split(',')])) if first and second else 'Too different'
Oct. 16, 2018