1
0
www.mikescher.com/www/statics/euler/Euler_Problem-056_explanation.md

7 lines
557 B
Markdown
Raw Normal View History

2017-11-08 17:39:50 +01:00
Here we iterate through the values of a (1..99) and do (manually) the long multiplication.
Because we have to implement the multiplication manually we get every result from a^1 to a^99 an can easily get the digitsum for these.
Then we remember the maximum digitsum and vòila, problem solved.
A few optimizations:
- We ignore values where `a%10 == 0`, because these result in numbers consisting mostly of zeroes, and those will never have a high digitsum
- We also ignore values for a<45, because the numbers are just to short to be really significant.