You are viewing a single comment's thread. Return to all comments →
Java Short Solution
public static long aVeryBigSum(List ar) { // Write your code here long sum=0; for(long i:(ar)) sum+=i; 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 →
Java Short Solution
public static long aVeryBigSum(List ar) { // Write your code here long sum=0; for(long i:(ar)) sum+=i; return sum; }