Move To Front Encode by hallvabo

s=''
t='0123456789'
for c in raw_input():i=t.find(c);s+=`i`;t=c+t[:i]+t[i+1:]
print s

Note that non-ascii characters in the above source code will be escaped (such as \x9f).

download

return to the top page