You are viewing a single comment's thread. Return to all comments →
Java
public static int simpleArraySum(List<Integer> ar) { return ar.stream().mapToInt(Integer::intValue).sum(); }
Seems like cookies are disabled on this browser, please enable them to open this website
Simple Array Sum
You are viewing a single comment's thread. Return to all comments →
Java