https://www.hackerrank.com/challenges/a-very-big-sum/problem?isFullScreen=true A Very Big Sum | HackerRankCalculate the sum of the values in an array that might exceed the range of int values.www.hackerrank.comHackerrank > A Very Big Sum 문제배열을 효율적으로 잘 더하는 방법.Java 8 이상public static long aVeryBigSum(List ar) { return ar.stream().mapToLong(Long::longValue).sum();}Kotlinfun aVeryBigSum(ar: Array)..
https://www.hackerrank.com/challenges/compare-the-triplets/problem?isFullScreen=true Compare the Triplets | HackerRankCompare the elements in two triplets.www.hackerrank.com이 문제 풀다가 정리한 것 (HackerRank > Compare the Triplets)문제 상황아래와 같은 int형 배열이 있을 때,int shortArray[] = new int[2];int longArray[[] = new int[12345];각 언어에서 어떻게 list로 변환하느냐?근데 언어에 따라 List -> 배열로 바꾸는 것도 있음.Java 7길이가 짧은 배열 -> Arrays.asLi..
https://www.hackerrank.com/challenges/simple-array-sum/problem?isFullScreen=true Simple Array Sum | HackerRankCalculate the sum of integers in an array.www.hackerrank.com아주아주 간단한 문제. for문 잘 쓰고 있는지 물어보는 것.개발자라면 다 풀 수 있으나, 언어별 차이를 정리해서 남기고자 쓰는 글. Java 8 미만public static int simpleArraySum(List ar) { int sum = 0; for(int i: ar) { sum += i; } return sum;}아주아주 간단한 for문.Java 8 이상publ..