오답노트
프로그래머스 1단계 - 내적 본문
https://programmers.co.kr/learn/courses/30/lessons/70128?language=cpp
- 문제 파악
정수 배열 a, b가 주어진다. a와 b의 내적을 구하라
내적은 다음과 같다. a[0]*b[0] + a[1]*b[1] + ... + a[n-1]*b[n-1]
- 정답
#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,C++ > 코딩테스트' 카테고리의 다른 글
프로그래머스 1단계 - 키패드 누르기 (0) | 2022.06.01 |
---|---|
프로그래머스 1단계 - 음양 더하기 (0) | 2022.06.01 |
프로그래머스 1단계 - 소수 만들기 (0) | 2022.06.01 |
프로그래머스 1단계 - 완주하지 못한 선수 (0) | 2022.05.31 |
프로그래머스 1단계 - K번째수 (0) | 2022.05.31 |