Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Re^4: Very Large Hex Combinations

by Taulmarill (Deacon)
on Aug 04, 2005 at 15:18 UTC ( [id://480863]=note: print w/replies, xml ) Need Help??


in reply to Re^3: Very Large Hex Combinations
in thread Very Large Hex Combinations

i think one should use recursion here, something like this maybe
use strict; use warnings; my @charset = ( 0..9, "A".."F" ); rec( 8 ); sub rec { my $deep = shift; my $string = shift || ''; if ( $deep-- ) { for my $char ( @charset ) { rec( $deep, $string . $char ); } } else { print "$string\n"; } }

Replies are listed 'Best First'.
Re^5: Very Large Hex Combinations
by ikegami (Patriarch) on Aug 04, 2005 at 15:21 UTC
    Quite so, since all the loops have the same bounds. ++ed

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://480863]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (5)
As of 2024-03-19 08:08 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found