반응형
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
- pytorch
- dfs
- SSAFY 8기
- SWEA
- SSAFYcial
- 알고리즘
- git
- React
- 삼성청년sw아카데미
- ssafy 7기 합격
- 백준7576 bfs
- SSAFY
- ssafy 7기
- Learning
- 코딩 교육
- ssafy 7기 교수님
- bfs
- SSAFY 입학식
- 백준
- 전이학습
- 코딩교육
- DP
- 프로그래머스 고득점 kit
- 유니온 파인드
- 프로그래머스
- 삼성 청년 SW 아카데미
- 이코테
- 웹 표준 사이트 만들기
- 싸피 7기 입학식
- DenseNet
Archives
- Today
- Total
목록프로그래머스 (2)
개미의 개열시미 프로그래밍
[프로그래머스] 2020 카카오 인턴십/키패드 누르기(자바 풀이)
[자바 풀이] import java.util.*; import java.io.*; class Solution { static int[][] graph = {{1,2,3}, {4,5,6}, {7,8,9}, {-1, 0, -2}}; static int[][] visited; static Queue q; static int[] dy = {-1, 1, 0, 0}; static int[] dx = {0, 0, -1, 1}; public String solution(int[] numbers, String hand) { StringBuilder sb = new StringBuilder(numbers.length); List result = new ArrayList(); int curL = -1; int curR = ..
알고리즘/DFS, BFS, 백트래킹
2022. 2. 6. 02:01