Written by
최태열
on
on
[Python][프로그래머스][Level3] 숫자 게임
[Python][프로그래머스][Level3] 숫자 게임
코드
def solution(A, B):
A.sort()
B.sort()
answer=0
while A and B:
if B[-1]>A[-1]:
answer+=1
B.pop()
A.pop()
return answer
Discussion and feedback