728x90
반응형
(Python) 로또의 최고 순위와 최저 순위 (프로그래머스 Lv.1)
https://school.programmers.co.kr/learn/courses/30/lessons/77484
def solution(lottos, win_nums):
answer = []
count = 0
for win in win_nums:
for lotto in lottos:
if win == lotto:
count += 1
answer.append(7 - (count + lottos.count(0)))
answer.append(7 - count)
if answer[0]>6:
answer[0] = 6
if answer[1]>6:
answer[1] = 6
return answer
728x90
반응형
'Python공부 > 프로그래머스' 카테고리의 다른 글
(Python) 문자열 나누기 (프로그래머스 Lv.1) (0) | 2023.06.19 |
---|---|
(Python) 옹알이(2) (프로그래머스 Lv.1)/ i = i.replace(j,' ') (0) | 2023.06.19 |
(Python) 둘만의 암호 (프로그래머스 Lv.1) (0) | 2023.06.19 |
(Python) *기사단원의 무기 (프로그래머스 Lv.1)/제곱근까지만 범위설정 (0) | 2023.06.19 |
(Python) *소수 찾기 (프로그래머스 Lv.1) (2) | 2023.06.19 |