Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Common Words by DominikKossinski
def checkio(first, second):
first=first.split(',')
second=second.split(',')
odp=[]
for i in first:
for j in second:
if(i==j):
odp.append(i)
odp.sort()
o=""
n=len(odp)
z=0
for i in odp:
o=o+i
if(n>1):
if(z
Oct. 21, 2016