Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
short solution in Creative category for Common Words by gbryk1
def checkio(first, second):
return ','.join(sorted([a for a in first.split(',') if a in second.split(',')]))
Oct. 14, 2017