반응형
250x250
Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 유니온 파인드
- SWEA
- SSAFY 입학식
- Learning
- 싸피 7기 입학식
- 웹 표준 사이트 만들기
- ssafy 7기
- bfs
- SSAFY
- 삼성청년sw아카데미
- SSAFYcial
- ssafy 7기 교수님
- DP
- 백준7576 bfs
- pytorch
- 전이학습
- 알고리즘
- 삼성 청년 SW 아카데미
- 이코테
- 프로그래머스
- dfs
- 프로그래머스 고득점 kit
- DenseNet
- React
- 코딩 교육
- SSAFY 8기
- git
- ssafy 7기 합격
- 백준
- 코딩교육
Archives
- Today
- Total
목록프로그래머스 전력망 둘로 나누기 java (1)
개미의 개열시미 프로그래밍
[프로그래머스] LEVEL2 전력망을 둘로 나누기 - 자바
https://programmers.co.kr/learn/courses/30/lessons/86971 코딩테스트 연습 - 전력망을 둘로 나누기 9 [[1,3],[2,3],[3,4],[4,5],[4,6],[4,7],[7,8],[7,9]] 3 7 [[1,2],[2,7],[3,7],[3,4],[4,5],[6,7]] 1 programmers.co.kr [풀이 코드] import java.util.*; class Solution { static List list; public int solution(int n, int[][] wires) { int answer = -1; list = new ArrayList(); for(int i=0; i
알고리즘/DFS, BFS, 백트래킹
2022. 3. 7. 21:42