Numbers with same digit set in base 10 and base 16: Difference between revisions

Content deleted Content added
Thundergnat (talk | contribs)
→‎{{header|Raku}}: Clarified and expanded
Thundergnat (talk | contribs)
m →‎{{header|Raku}}: remove extraneous whitespace
Line 693: Line 693:


say "\nNumbers up to 100,000 which when expressed in hexadecimal and in decimal
say "\nNumbers up to 100,000 which when expressed in hexadecimal and in decimal
are composed from the same digit glyphs. (All the same glyphs are present,
are composed from the same digit glyphs. (All the same glyphs are present,
possibly different quantity.)\n";
possibly different quantity.)\n";
say .elems ~ " found:\n" ~ .batch(20)».fmt('%5d').join("\n") given
say .elems ~ " found:\n" ~ .batch(20)».fmt('%5d').join("\n") given
Line 721: Line 721:


Numbers which when expressed in hexadecimal and in decimal are composed
Numbers which when expressed in hexadecimal and in decimal are composed
from the same digit glyphs. (All the same glyphs are present, possibly
from the same digit glyphs. (All the same glyphs are present, possibly
different quantity.)
different quantity.)