Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for Common Words by TovarischZhukov
def checkio(first, second):
return ",".join([elem for elem in sorted(first.split(",")) if elem in second.split(",")])
Dec. 2, 2015