Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re: Getting combinations from a number's digits

by ioannis (Abbot)
on Jul 10, 2006 at 00:55 UTC ( [id://560041]=note: print w/replies, xml ) Need Help??


in reply to Getting combinations from a number's digits

This solution is based on the combinational powers of glob()
my $txt = '123'; local $"=','; my @array = glob( "{@{[ split(//,$txt)]}}" x length($txt) ); print Dumper \@array ;

Replies are listed 'Best First'.
Re^2: Getting combinations from a number's digits
by Zaxo (Archbishop) on Jul 10, 2006 at 01:28 UTC

    That glob will also produce 111, 122, etc. Combinations without replacement are needed.

    After Compline,
    Zaxo

Re^2: Getting combinations from a number's digits
by mikasue (Friar) on Jul 10, 2006 at 01:13 UTC
    um... I learned something. glob() is an actual module. I thought you were using it like we use blah or foo. Thanks, but does this use of glob create the 6 combinations for him? It seems the 6 combinations are hardcoded and he just want to store them somewhere for later use.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (7)
As of 2024-04-23 11:07 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found