Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Second - Common Words solution in Clear category for Common Words by Wakko_Warner
def checkio(line1: str, line2: str) -> str:
return ','.join(sorted(([word for word in line1.split(',') if word in line2.split(',')])))
Dec. 13, 2020