;
># Add one comma each time through the do-nothing loop
>1 while $number =~ s/^(\d+)(\d\d\d)/$1,$2/;
>$number;
> }
>
>
> Sincerely,
> David Kronheim
> Production Support Tier II
> Gateway Error Correction, VZ450 EDI, EDI Billing, & Metakey/LI
timothy adigun [2teezp...@gmail.com]
Sent: Saturday, December 31, 2011 4:11 AM
To: Jeswin
Cc: beginners
Subject: Re: working with large integers
Hi Jeswin,
>>>>> "Shlomi" == Shlomi Fish writes:
Shlomi>Hi Jeswin,
Shlomi>On Thu, 29 Dec 2011 11:4
Hi Jeswin,
> "Shlomi" == Shlomi Fish writes:
Shlomi>Hi Jeswin,
Shlomi>On Thu, 29 Dec 2011 11:40:09 -0500
Shlomi>Jeswin wrote:
Shlomi>> Hi,
Shlomi>> I'm doing one of the Project Euler exercises which asks
the sum of 100
Shlomi>> fifty-digi
Hi Jeswin,
On Thu, 29 Dec 2011 11:40:09 -0500
Jeswin wrote:
> Hi,
> I'm doing one of the Project Euler exercises which asks the sum of 100
> fifty-digit numbers[1]. My code is 2 parts:
>
> I open the text file containing the digits and put into an array:
> BEGIN_CODE