Project Euler #254: Sums of Digit Factorials

  • + 0 comments

    This is really a hard problem. There is a way to calculate sums in O(logn), but that requires carefull analysis. There is also a challenge in modulo arithmetic because we must avoid divisions as there are often no inverses. (there is no guarantee that gcd(m, denominator) = 1).