RE: General ftp question

2003-03-03 Thread Beau E. Cox
Hi - > -Original Message- > From: Ebaad Ahmed [mailto:[EMAIL PROTECTED] > Sent: Saturday, March 01, 2003 3:00 PM > To: [EMAIL PROTECTED]; [EMAIL PROTECTED] > Subject: General ftp question > > > Hello All, > I have just installed SuSe on my computer, I can ftp to any ftpsite from > this b

RE: How to get the biggest integers from an array?

2002-12-11 Thread Beau E. Cox
I'm not sure I understand your whole question, but the easiest way to find the largest integers is to sort your array in reverse numeric order: my @array (5, 6, 7, 89, 1, 0, 456, 298023, 56); my @sorted = sort {$b <=> $a } @array; Now @sorted should contain: (298023, 456, 89, 56, 7, 6, 5, 1, 0)