You are viewing a single comment's thread. Return to all comments →
My C# solution:
public static long aVeryBigSum(List<long> ar) { long result = 0; for(int i = 0; i < ar.Count; i++) { result += ar[i]; } return result; }
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 →
My C# solution: