You are viewing a single comment's thread. Return to all comments →
public static long aVeryBigSum(List<Long> ar) { long k = 0; for(Long l : ar){ k += l; } return k; }
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 →