프로그래머스 1단계
내적
https://programmers.co.kr/learn/challenges
문제 설명
풀이
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;
}
}
'알고리즘 > 프로그래머스 1단계' 카테고리의 다른 글
[프로그래머스] 제일 작은 수 제거하기 (0) | 2022.04.25 |
---|---|
[프로그래머스] 부족한 금액 계산하기 (0) | 2022.04.25 |
[프로그래머스] 문자열 내림차순으로 배치하기 (0) | 2022.04.25 |
[프로그래머스] 없는 숫자 더하기 (0) | 2022.04.25 |
[프로그래머스] 정수 내림차순으로 배치하기 (0) | 2022.04.25 |