Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Common Words by kazuki.h
def checkio(*array):
first, second = map(lambda x: set(x.split(",")), array)
return ",".join(sorted(list(first&second)))
Dec. 27, 2021