Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Common Words by koladen
def checkio(line1: str, line2: str) -> str:
return ','.join(sorted([i for i in line1.split(',') if i in line2.split(',')]))
Nov. 5, 2020
Comments: