[프로그래머스] 도넛과 막대 그래프(Lv.2) - 알고리즘
2024. 3. 28.
💡 도넛과 막대 그래프 문제 보기 https://school.programmers.co.kr/learn/courses/30/lessons/258711 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr function solution(edges) { var answer = new Array(4).fill(0); const graph = new Map() edges.forEach(([from,to])=>{ if(!graph.has(from)){ graph.set(from,[0,0]) } if(!graph.has(to)){ graph.set(to,[0,0]) } ..