Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Second solution in Clear category for Common Words by gyahun_dash
from operator import and_
def checkio(*words):
return ','.join(sorted(and_(*(set(w.split(',')) for w in words))))
May 21, 2014
Comments: