Re: Really really new

2001-07-18 Thread Abdulaziz Ghuloum
Hello, The simplest way to do this is to first find the max length of the numbers: my @ar1 = qw/116 44 45 49 71/; my @ar2 = qw/1 1 3 5 1/; my $max = length ((sort {$b <=> $a} (@ar1,@ar2))[0]); # assuming all

Re: Really really new

2001-07-18 Thread Stephen P. Potter
Lightning flashed, thunder crashed and Liger-dc <[EMAIL PROTECTED]> whispered: | I have a formatting question: | I have 2 arrays with integers that I want to print, with one array above the > other so that the | matching entries end up in the same column. Currently they look like.. | | 116 44 45

Re: Really really new

2001-07-18 Thread Jason Purdy
ROTECTED]> Sent: Wednesday, July 18, 2001 1:52 PM Subject: Really really new > I have a formatting question: > I have 2 arrays with integers that I want to print, with one array above the other so that the > matching entries end up in the same column. Currently they look like.. >

Really really new

2001-07-18 Thread Liger-dc
I have a formatting question: I have 2 arrays with integers that I want to print, with one array above the other so that the matching entries end up in the same column. Currently they look like.. 116 44 45 49 71 1 1 3 5 1 and I want them to look like 116 44 45 49 71 1 1 3 5 1 The probl