Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Strings 101 solution in Clear category for Common Words by new_hoschi
def checkio(first, second):
return ",".join(sorted([word for word in first.split(',') if word in second.split(',')]))
April 15, 2020