728x90
코딩테스트 연습 - 내적 | 프로그래머스 (programmers.co.kr)
쉬워서 설명 생략
#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;
}
728x90
'Algorithm > Solution' 카테고리의 다른 글
[프로그래머스] 두 개 뽑아서 더하기 (0) | 2021.08.25 |
---|---|
[프로그래머스] 약수의 개수와 덧셈 (0) | 2021.08.16 |
[프로그래머스] 두 정수 사이의 합 (0) | 2021.08.10 |
[프로그래머스] 위클리 챌린지 2주차 문제 - 상호 평가(C++) (0) | 2021.08.09 |
[프로그래머스] 소수 만들기 (0) | 2021.08.06 |