Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Common Words by Tinus_Trotyl
def checkio(first, second):
return ','.join(sorted(word for word in first.split(',') if word in second.split(',')))
July 31, 2019
Comments: