Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Filter with lambda solution in Clear category for Common Words by von.Oak
def checkio(first, second):
return ','.join(sorted(filter(lambda x: x in first.split(','), second.split(','))))
Aug. 14, 2018