본문 바로가기
코딩테스트/Python

프로그래머스 스쿨 - 최솟값 만들기(Python)(복습)

by 보안매크로 2023. 10. 13.
728x90
A = [1, 4, 2]
B = [5, 4, 4]


def solution(A,B):
    answer = 0
   
    A = sorted(A)  
    B = list(reversed(sorted(B)))  
   
    for idx in range(len(A)):
        answer += A[idx] * B[idx]

    return answer

solution(A,B)
728x90