Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
CommonWords solution in Clear category for Common Words by Seaclaid
def checkio(first, second):
l_odp=[]
odp=""
w1=first.split(',')
w2=second.split(',')
print(w1,w2,type(w1),type(w2))
for i in range(len(w1)):
temp=w1[i] in w2
if temp==True:
l_odp=l_odp+[w1[i]]
l_odp=sorted(l_odp)
for i in range(len(l_odp)):
if i
Jan. 10, 2017