import java.util.List; public class FunctionalProgrammingMagic { public static long sumOfSquares(List numbers) { if(numbers == null){ return 0; } return numbers.stream() .mapToLong(n -> n * n) .sum(); } } mapToLong은 LongStream을 만들어주는 map의 특별한 버전이다.
https://github.com/Choidongjun0830