일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 커스텀뷰
- 앱
- CustomView
- OnDraw
- 제약
- firebase
- 프로그래밍
- udacity
- Udacity Firebase
- 레이아웃
- 초보
- 어플리케이션
- 안드로이드
- gradle
- 파이어베이스
- 안드로이드프로그래밍
- REST API
- 웹프로그래밍
- 제약조건레이아웃
- 네트워크 개념
- 안드로이드 통신
- Retrofit2
- Android
- RESTful
- view
- onMeasure
- retrofit
- HTML 문법
- html
- HTML 기초
Archives
- Today
- Total
목록Algorithms (1)
Polyglot's language & programming story.
Backjoon 10164 격자상의 경로
/* Back10164 제목 : 격자상의 경로 날짜 18.4.30 분류 : 다이나믹 프로그래밍 경로의 점화식은 f(i, j) = f(i-1, j) + f(i, j-1) 이 경로의 경우의 수 구하는 점화식 1. 중간점의 좌표를 구하는 모듈 2. 원하는경로를 이동하는 경우의 수를 구하는 모듈 */ import java.util.Scanner; public class Back10164 { static int[][] m = new int[16][16]; static int[][] l = new int[16][16]; public static void main(String[] args) { int[] mids = new int[2]; //0행 1 열 int row; int colum; int num; int co..
Algorithms
2018. 4. 30. 20:41