본문 바로가기
알고리즘/프로그래머스 1단계

[프로그래머스] 내적

by lanuarius19 2022. 4. 25.

프로그래머스 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;
    }
}