Recent Posts
Notice
No Rules Rules
내적 (feat. 프로그래머스, 70128번) 본문
728x90
반응형
내적
https://programmers.co.kr/learn/courses/30/lessons/70128
반응형
// woohyeon.kim
#include <string>
#include <vector>
using namespace std;
int solution(vector<int> a, vector<int> b) {
auto answer = 0;
for(auto idx = 0; idx < a.size(); ++idx)
{
answer += a[idx] * b[idx];
}
return answer;
}
// *&)*@*
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
124 나라의 숫자 (feat. 프로그래머스, 12899번) (0) | 2022.07.21 |
---|---|
멀쩡한 사각형 (feat. 프로그래머스, 62048번) (0) | 2022.07.21 |
카카오프렌즈 컬러링북 (feat. 프로그래머스, 1829번) (0) | 2022.07.21 |
없는 숫자 더하기 (feat. 프로그래머스, 86051번) (0) | 2022.07.21 |
음양 더하기 (feat. 프로그래머스, 76501번) (0) | 2022.07.21 |
Comments