Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
#12 solution in Clear category for Common Words by Rudeboyz_Squad
def checkio(first, second):
first = first.split(',')
second = second.split(',')
return ','.join(sorted([i for i in first if i in second]))
March 6, 2019