반응형
이진트리
-
[CodeKata] 프로그래머스(Lv3) : 양과 늑대(KAKAO)Algorithm 2022. 4. 2. 19:25
🥋 Oooth More!! (Level 3) 🧮 풀이 이진트리 문제이기 때문에 난이도가 있을거라고 생각했지만, DFS를 적용해서 풀 수 있었던 문제였다. 🖇 리뷰 function solution(info, edges) { let answer = 1; const length = info.length; const graph = Array.from({length}, () => []); for(let i = 0; i { let [currentNode, sheep, wolves] = current; const newN..