SMALL
문제 출처
풀이 코드
def solution(lottos, win_nums):
min, max = 0, 0
for lotto in lottos:
if lotto == 0:
max+=1
else:
if lotto in win_nums:
min+=1
max+=min
if min==0 and max!=0: answer = [7-max, 6]
if min==0 and max==0: answer = [6, 6]
if min!=0 and max!=0: answer =[7-max, 7-min]
return answer
LIST
'알고리즘-python > Programmers 문제' 카테고리의 다른 글
[프로그래머스/2단계/파이썬(Python3)] 삼각달팽이 (0) | 2021.07.07 |
---|---|
[프로그래머스/1단계/파이썬(Python3)] 모의고사 (0) | 2021.07.04 |
[프로그래머스/2단계/파이썬(Python3)] 가장 큰 수 (0) | 2021.06.27 |
[프로그래머스/2단계/파이썬(Python3)] H-index (0) | 2021.06.27 |
[프로그래머스/2단계/파이썬(Python3)] JadenCase 문자열 만들기 (0) | 2021.06.26 |