https://programmers.co.kr/learn/courses/30/lessons/70128
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;
}
}
'코딩테스트연습 > 프로그래머스' 카테고리의 다른 글
[프로그래머스 - JAVA] Summer/Winter Coding(~2018) 예산 (0) | 2021.10.24 |
---|---|
[프로그래머스 - JAVA] 월간 코드 챌린지 시즌2 약수의 개수와 덧셈 (0) | 2021.10.24 |
[프로그래머스 - JAVA] 월간 코드 챌린지 시즌2 음양 더하기 (0) | 2021.10.24 |
[프로그래머스 - JAVA] 월간 코드 챌린지 시즌3 없는 숫자 더하기 (0) | 2021.10.24 |
[프로그래머스 - JAVA] 2020 카카오 인턴십키패드 누르기 (0) | 2021.10.24 |