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