Jump Letters by pichulia

char c[99];d[99],i,j;main(){while(gets(c)>0){for(i=0;c[i];i++)for(j=0;c[j];j++)if(i-j&&c[i]==c[j])d[i]=j;for(i=0;c[i];i=d[i]+1)putchar(c[i]);puts("");}}

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

download

return to the top page