본문 바로가기
프로그래머스

[프로그래머스] 내적

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