Project Euler – Problem 48
Find the last ten digits of 1^1 + 2^2 + … + 1000^1000. Problem: The series, 1^(1) + 2^(2) + 3^(3) + … + 10^(10) = 10405071317. Find the last ten digits of the series, 1^(1) + 2^(2) + 3^(3) + … + 1000^(1000). My Solution: [sourcecode language="csharp"] using System; using System.Collections.Generic; using System.Linq; using [...]