http://www.perlmonks.org?node_id=1007890


in reply to Re: I need help with some recursion
in thread I need help with some recursion

It is perfect, simple. But if i applied it for all the lines the result will be:

1,2,4,3,6,7 2,3,4,7,6,1 3,7,1,2,4,6 4,6 5,10,11,12,13 6 7,1,2,4,3,6

but i am looking for something like this:

1,2,4,3,6,7 5,10,11,12,13

Replies are listed 'Best First'.
Re^3: I need help with some recursion
by tobyink (Canon) on Dec 08, 2012 at 14:23 UTC

    So don't apply it to all the lines. This seems to produce something close to your desired output:

    my %seen; for (my $i = 1; $i < @lines; $i++) { next if $seen{$i}; my @results = line_closure($i); print Dumper \@results; $seen{$_}++ for @results; }
    perl -E'sub Monkey::do{say$_,for@_,do{($monkey=[caller(0)]->[3])=~s{::}{ }and$monkey}}"Monkey say"->Monkey::do'

      it seems work perfect. thank you very much.

      thank you very much