Move To Front Encode by clock

s="0123456789"
for x in raw_input():n=s.find(x);s=x+s[:n]+s[n+1:]+`n`
print s[10:]

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

download

return to the top page