Notice
Recent Posts
Recent Comments
Link
S E P H ' S
[Python] 내적 본문
def solution(a, b):
answer = 0
for i in range(len(a)):
answer += a[i]*b[i]
return answer
'Algorithm > Programmers' 카테고리의 다른 글
[Python] 로또의 최고 순위와 최저 순위 (0) | 2021.07.08 |
---|---|
[Python] 3진법 뒤집기 (0) | 2021.07.08 |
[Python] 폰켓몬 (0) | 2021.07.07 |
[Python] 약수의 개수와 덧셈 (0) | 2021.07.06 |
[Python] 음양 더하기 (0) | 2021.07.06 |