Move To Front Encode by rolf

a="0123456789";r=""
for c in raw_input():i=a.find(c);r+=`i`;a=c+a[:i]+a[i+1:]
print r

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

download

return to the top page