로또의 최고 순위와 최저 순위 - Python
문제 링크
Code
def calc_ranking(arr):
res = []
for val in arr:
if val < 2:
res.append(6)
else:
res.append(7-val)
return res
def solution(lottos, win_nums):
max, min = 0, 0
for lotto in lottos:
if lotto == 0:
max += 1
if lotto in win_nums:
max += 1
min += 1
return calc_ranking([max, min])
애로사항
def calc_ranking(arr):
res = []
for val in arr:
if val < 2:
res.append(6)
else:
res.append(7-val)
return res
def solution(lottos, win_nums):
max, min = 0, 0
for lotto in lottos:
if lotto == 0:
max += 1
if lotto in win_nums:
max += 1
min += 1
return calc_ranking([max, min])
애로사항
array의 길이가 6밖에 되지 않으니까 그냥 for문 때려박아도 빠르게 계산된다..
Author And Source
이 문제에 관하여(로또의 최고 순위와 최저 순위 - Python), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@hanqpark/로또의-최고-순위와-최저-순위-Python저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)