in reply to Re: base 4 golf
in thread base 4 golf
Fails in case the binary expension has odd length. can be fixed like this for example:perl -le'$_=sprintf"%b",pop;s/../$&%8/eg;print'
perl -le'$_=sprintf"%b",pop;s/..(?=(..)*$)/$&%8/eg;print' 31
update (broquaint): added formatting
|
|---|