Bitwise Sequence by lynn

for _,x in sorted((bin(x).count('1'),-x)for x in range(256)):print bin(256-x)[3:]

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

download

return to the top page