[C++] 프로그래머스 Level 1 : 내적

Kim Nahyeong·2022년 8월 1일
0

프로그래머스

목록 보기
14/38

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

그냥 for문 돌리면 된다.
answer의 초깃값이 1234567890으로 주어졌다고 해서 사용하지 말고 그냥 answer = 0; 로 두면 편하게 풀 수 있다.

0개의 댓글