쌓고 쌓다
[프로그래머스] 내적 C++ 풀이 본문
https://programmers.co.kr/learn/courses/30/lessons/70128
전체 코드
#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;
}
'알고리즘 > 프로그래머스' 카테고리의 다른 글
[프로그래머스] 완주하지 못한 선수 C++ 풀이 (0) | 2022.06.28 |
---|---|
[프로그래머스] 소수 만들기 C++ 풀이 (0) | 2022.06.27 |
[프로그래머스] 음양 더하기 C++ 풀이 (0) | 2022.06.27 |
[프로그래머스] 없는 숫자 더하기 C++ 풀이 (0) | 2022.06.27 |
[프로그래머스] 크레인 인형뽑기 게임 C++ 풀이 (0) | 2022.06.27 |
Comments