Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
1-liner solution in Creative category for Common Words by Stensen
checkio = lambda l1, l2: ','.join(sorted([i for i in l1.split(',') if i in l2.split(',')]))
Sept. 22, 2020