196 algorithm by 51b

-module(a).
-export([m/0]).
m()->[io:write(f(N))>io:nl()||N<-lists:seq(1,195)].
f(N)->M=list_to_integer(lists:reverse(io_lib:write(N))),if M==N->N;0<1->f(M+N)end.

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

download

return to the top page