- 난이도: Lv1
프로그래머스 링크: https://school.programmers.co.kr/learn/courses/30/lessons/70128
풀이 링크(GitHub): hayannn/CodingTest_Java/프로그래머스/1/70128. 내적
풀이 시간 : 10분
import java.util.*;
class Solution {
public int solution(int[] a, int[] b) {
int answer = 0;
for(int i=0; i <a.length; i++){
answer += a[i] * b[i];
}
return answer;
}
}
class Solution {
public int solution(int[] a, int[] b) {
return IntStream.range(0, a.length).map(index -> a[index] * b[index]).sum();
}
}