반응형 알고리즘1 [알고리즘] Javascript 로또의 최고 순위와 최저 순위 프로그래머스 로또의 최고 순위와 최저 순위 function solution(lottos, win_nums) { const answers = []; const lottoRank = { '6': 1, '5': 2, '4': 3, '3': 4, '2': 5, '1': 6, '0': 6, }; let mathLottoIndex = 0; let zeroLottoIndex = 0; for (const lottoNumber of lottos) { const matchStatus = win_nums.includes(lottoNumber); if (matchStatus) mathLottoIndex++; else if (lottoNumber === 0) zeroLottoIndex++; } const best = lotto.. 2021. 9. 17. 이전 1 다음 반응형