Posts [알고리즘] 프로그래머스 - 내적
Post
Cancel

[알고리즘] 프로그래머스 - 내적


문제

내적


접근


코드

  • C++ 코드
1
2
3
4
5
6
7
8
9
10
11
#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;
}
  • 파이썬 코드
1
2
3
4
5
def solution(a, b):
    answer = 0
    for x, y in zip(a,b):
        answer += x*y
    return answer


This post is licensed under CC BY 4.0 by the author.

[알고리즘] 프로그래머스 - 문자열을 정수로 바꾸기

[알고리즘] 프로그래머스 - 평균 구하기