프로그래머스

[프로그래머스] 내적

소금_msg 2022. 11. 28. 18:04
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;
    }
}