본문 바로가기
Coding Test/C++

[프로그래머스] 내적 C++ Code

by giem 2022. 7. 29.
반응형

2022.07.29 - [Coding Test/Python] - [프로그래머스] 내적 Python Code

 

이번엔 C++로 풀어보겠다.


문제


Code

 

#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;
}

 

반응형

댓글