| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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
- application not responding
- 액티비티 ANR
- oracle
- 안드로이드 ANR
- 자료구조
- 알고리즘
- 너비우선탐색
- db
- 자바 컬렉션
- SQLite와 Realm 차이점
- Github
- DFS
- 깊이우선탐색
- 안드로이드 파일
- android adapterview
- 안드로이드 AdapterView
- anr
- java
- 백준
- support fragment
- 백준 알고리즘
- 소수
- 안드로이드
- BFS
- 소수 알고리즘
- support 라이브러리
- android support
- android fragment
- 컬렉션
- 안드로이드 DBMS
Archives
- Today
- Total
밍의 기록들😉
[프로그래머스] 타겟 넘버
보호되어 있는 글입니다.
자료구조, 알고리즘/문제풀이
2019. 10. 6. 21:53
[프로그래머스] 완주하지 못한 선수
보호되어 있는 글입니다.
자료구조, 알고리즘/문제풀이
2019. 9. 18. 17:09
문제 소스코드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