Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Common Words by m.kurapov
def checkio(first, second):
return ",".join(sorted(set(first.split(",")).intersection(set(second.split(",")))))
Feb. 16, 2020
Comments: