I am working through the problems on project Euler and am not to certain if my understanding of the question is correct.
Problem 8 is as follows:
Find the greatest product of five consecutive digits in the 1000-digit number.
I have taken this to mean the following:
I need to find any five numbers that run consecutively in the 1000 digit number and then add these up to get the total. I am assuming that the size of the numbers could be anything ie 1,2,3 or 12,13,14 or 123,124,124 or 1234,1235,1236 etc.
Is my understanding of this correct or have i misunderstood the question.
Thanks
PS. Please dont supply code or the solution, that I need to solve myself.
Thanks everyone. This was far easier than i was reading it, thanks for all the explanations. StackOverflow never disappoints.
nsuch thatstr(n*(n-1)*(n-2)*(n-3)*(n-4)) in str(bignum)-- which means thatncan have up to 200 digits. This problem is slightly harder to solve, to put it mildly. – Lauritz V. Thaulow Aug 20 '11 at 10:28