일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- oracle
- 자바 컬렉션
- android fragment
- DFS
- 깊이우선탐색
- application not responding
- 안드로이드 ANR
- 안드로이드 DBMS
- 소수
- 안드로이드 AdapterView
- 알고리즘
- support fragment
- 백준
- SQLite와 Realm 차이점
- 자료구조
- 액티비티 ANR
- BFS
- 너비우선탐색
- android adapterview
- java
- anr
- 안드로이드
- 백준 알고리즘
- 안드로이드 파일
- 컬렉션
- android support
- support 라이브러리
- db
- 소수 알고리즘
- Github
Archives
- Today
- Total
목록미로 찾기 (1)
밍의 기록들😉
[문제] 벽 부수고 이동하기
문제 소스코드import java.util.*; class Pair2{ int x; int y; boolean c ; // 부쉈다면 ture, 부수지 않았다면 false Pair2(int x, int y, boolean c){ this.x = x; this.y = y; this.c = c; } } public class Maze2 { public static final int[] dx = {0,0,1,-1}; public static final int[] dy = {1,-1,0,0}; public static void main(String[] args) { Scanner sc = new Scanner(System.in); String[] input = sc.nextLine().split(" "); int..
자료구조, 알고리즘/문제풀이
2018. 9. 17. 16:10