You are viewing a single comment's thread. Return to all comments →
C# solution
public static long aVeryBigSum(List<long> ar) { long sum = ar.Sum(x => Convert.ToInt64(x)); return sum; }
Seems like cookies are disabled on this browser, please enable them to open this website
A Very Big Sum
You are viewing a single comment's thread. Return to all comments →
C# solution