문제 링크 (Level 1)
https://programmers.co.kr/learn/courses/30/lessons/70128
나의 코드 (python)
def solution(a, b):
answer = 0
for i in range(len(a)):
# 내적
answer += a[i] * b[i]
return answer
'코딩공부 > 프로그래머스 (python)' 카테고리의 다른 글
[프로그래머스] 소수 만들기 (python) (0) | 2021.07.16 |
---|---|
[프로그래머스] 크레인 인형뽑기 (python) (0) | 2021.07.16 |
[프로그래머스] 음양 더하기 (python) (0) | 2021.07.15 |
[프로그래머스] K번째 수 (python) (0) | 2021.07.15 |
[프로그래머스] 신규 아이디 추천 (python) (0) | 2021.07.15 |
댓글