in reply to TMTOWTDI Puzzle: Generating a range of numbers
my @numbers = ( ['|'], ['|', '|'], ['|', '|', '|'], ['|', '|', '|', '|'], ['|', '|', '|', '|', '|'], ['|', '|', '|', '|', '|', '|'], ['|', '|', '|', '|', '|', '|', '|'], ['|', '|', '|', '|', '|', '|', '|', '|'], ['|', '|', '|', '|', '|', '|', '|', '|', '|'], ['|', '|', '|', '|', '|', '|', '|', '|', '|', '|'], ); foreach( @numbers ) { print scalar @$_; print "\n"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: TMTOWTDI Puzzle: Generating a range of numbers
by Juerd (Abbot) on Dec 19, 2001 at 04:07 UTC |