-
내적코딩 테스트/Level 2 2020. 12. 8. 18:17반응형
내적
월간 코드 챌린지 시즌1 1207명 완료programmers.co.kr/learn/courses/30/lessons/70128
GO
func solution(a []int, b []int) (c int) { for i, v := range a { c += v * b[i] } return }
python
def solution(a, b): answer = 0 for c, d in zip(a, b): answer = c * d return answer
이렇게 작성하면 안되지만....
solution = lambda a, b: sum(c * d for c, d in zip(a, b))
반응형