Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Common Words by tokiojapan55
def checkio(first, second):
return ",".join(sorted([i for i in set(second.split(',')) if set(first.split(',')) >= {i}]))
June 17, 2020