일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 초보
- 앱
- 제약
- onMeasure
- REST API
- retrofit
- Android
- gradle
- 안드로이드프로그래밍
- html
- udacity
- 레이아웃
- 제약조건레이아웃
- CustomView
- 파이어베이스
- 웹프로그래밍
- Retrofit2
- RESTful
- 안드로이드 통신
- OnDraw
- firebase
- 안드로이드
- view
- 어플리케이션
- 커스텀뷰
- 네트워크 개념
- Udacity Firebase
- 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