프로그래머스 - 내적

Sorbet·2021년 3월 10일
0
class Solution {
    public int solution(int[] a, int[] b) {
        //내적연산공식에 의해서
        //a * b = a1*b1 + b2*b2;
        int len = a.length;
        int ans = 0;
        for(int i=0 ; i<len ; i++) {
            ans += a[i]*b[i];
        }
        return ans;
    }
}
profile
Sorbet is good...!

0개의 댓글

관련 채용 정보