Table of Contents

Programmers 내적 C++

Table of Contents

코딩테스트 연습 - 내적

접근 방법

주어진 조건 대로만 풀면 쉽게 해결할 수 있습니다.

코드

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
#include <string>
#include <vector>

using namespace std;

int solution(vector<int> a, vector<int> b) {
    int answer = 0;
    
    for (int i = 0; i < a.size(); ++i) {
        answer += a[i]*b[i];
    }
    
    return answer;
}