일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- codesandbox
- react
- 자바
- vanillaJS
- design pattern
- React JS
- 자바스크립트
- 백준
- Java
- 프로그래머스 자바
- 코틀린
- 코딩테스트 고득점 Kit
- react hook
- 장고
- websocket
- 자바 공부
- 리액트
- NextJS
- react firebase
- 컴퓨터 네트워크
- 코딩테스트 고득점 Kit 완전탐색
- useState
- 디자인 패턴
- 프로그래밍 언어론
- 프로그래머스
- useEffect
- 프로그래머스 완전탐색
- 리액트 훅
- JavaScript
- 데이터모델링과마이닝
Archives
- Today
- Total
목록전력망을 둘로 나누기 js (1)
기록하는 개발자
[프로그래머스][코딩테스트 고득점 Kit][Javascript] 전력망을 둘로 나누기
https://school.programmers.co.kr/learn/courses/30/lessons/86971 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr function solution(n, wires) { // n이 100 이하이므로 answer 101로 초기화 let answer = 101; // wires를 통해 tree 생성 let tree = Array.from(Array(n+1),()=>[]); wires.map((element)=>{ let [a,b] = element; tree[a].push(b); tree[b].push(a); })..
Algorithm
2023. 8. 7. 18:30