Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Split, sort, and join solution in Clear category for Common Words by Sioul
def checkio(fst, snd):
return ','.join(sorted(w for w in fst.split(',') if w in snd.split(',')))
Oct. 12, 2019
Comments: