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;
}
}
'프로그래머스' 카테고리의 다른 글
[프로그래머스] 음양 더하기 (0) | 2022.11.29 |
---|---|
[프로그래머스] x만큼 간격이 있는 n개의 숫자 (0) | 2022.11.28 |
[프로그래머스] 가운데 글자 가져오기 (0) | 2022.11.28 |
[프로그래머스] 정수 내림차순으로 배치하기 (0) | 2022.11.28 |
[프로그래머스] 문자열 정렬하기(레벨 0) (0) | 2022.11.16 |