Hello. I tried to pass an array in my sub as a separate set of args, but discovered that the hole array is a first element of the @_. I cant pick the elements up from @_[ 0] because I use recursion and the sub waits for separate args. So I need to fix the problem only on the first call. Here is some code.
sub permutations { my @array = @_; #my @tmp = @_; #if ($tmp[0][1] != 0) { for (0..$#{$tmp[0]}) { push (@array, $tmp[0] +[$_]); } } #else { @array = @_; } if ($#array == 0) {return [ $array[0] ]; } my @results; my $element; foreach $element (0..$#array) { my @leftovers = @array; my $chosen_one = splice(@leftovers, $element, 1); foreach (&permutations(@leftovers)) { push(@results, [ $chosen_one, @{$_} ]); } } return @results; } @a = permutations($test[2]);
where @test is a 2-dimentional array.

In reply to Problem with passing array in a sub by SHKVal

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.