Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
methodcaller solution in Creative category for Common Words by flpo
from operator import methodcaller
def checkio(*args):
first, second = map(methodcaller('split', ','), args)
return ','.join(sorted(filter(second.__contains__, first)))
Sept. 26, 2017
Comments: