Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Boring solution in Clear category for Common Words by Vulwsztyn
def checkio(f, s):
o=[]
f=f.replace(',',' ')
s=s.replace(',',' ')
for i in f.split():
if i in s.split():
o.append(i)
o.sort()
o=','.join(o)
return o
Oct. 31, 2016