numof 1 bits in 0 to 255 by 51b

-module(n).
-export([m/0]).
m()->f(72).
f(N)->if N>8->f(N-9),f(N-8);0<1->io:write(N)end.

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

download

return to the top page