일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 안드로이드
- 백준
- application not responding
- 액티비티 ANR
- 자료구조
- 너비우선탐색
- 안드로이드 파일
- 알고리즘
- java
- support fragment
- 소수 알고리즘
- Github
- support 라이브러리
- 백준 알고리즘
- 컬렉션
- SQLite와 Realm 차이점
- 안드로이드 AdapterView
- 깊이우선탐색
- db
- 소수
- DFS
- android fragment
- 자바 컬렉션
- oracle
- android adapterview
- android support
- 안드로이드 DBMS
- BFS
- anr
- 안드로이드 ANR
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