반응형
hash
-
[CodeKata] 프로그래머스 : 7.19(월), 여행경로 / 베스트앨범Algorithm 2021. 7. 20. 21:56
🥋 Oooth More!! (Level 3) : 여행경로 🧮 풀이 function sortTickets(list) { return list.sort((a,b) => { return a[1] < b[1] ? -1 : 1; }) } function solution(tickets) { let answer; function dfs(acc, res) { if (res.length === 0) { answer = [answer, acc].sort().shift(); return; } const now = acc[acc.length-1]; for (let i in res) { const [d, a] = res[i]; if (d === now) { const copiedRes = [...res]; const [next..