Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
I need one string for solution solution in Clear category for Common Words by SuperSaid09
def checkio(line1: str, line2: str) -> str:
return ''.join(sorted([word + ',' for word in line1.split(',') if word in line2.split(',')]))[:-1]
Nov. 14, 2020
Comments: