일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- DP
- Algorithm
- 알고리즘
- CS
- vscode
- react
- 동적 계획법
- 안드로이드
- TypeScript
- Python
- Redux
- 백준
- 프로그래머스
- Data Structure
- java
- Graph
- frontend
- 자바
- Database
- LeetCode
- DFS
- VIM
- 그레이들
- db
- network
- git
- 다이나믹 프로그래밍
- 리트코드
- BFS
- Javascript
Archives
- Today
- Total
목록코딩 문제/백준 (51)
늘 겸손하게

brute force method 으로 해결하는 문제 코드 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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 #include #include using namespace std; int main(void) { set s; int N , M; cin >> N >> M; int * arr = (int*)malloc( sizeof(int) * N ); for (int i = 0; i > arr[i]; } for (int i = 0; i
코딩 문제/백준
2021. 6. 29. 13:42

재귀 함수로 피보나치수열을 구현하여 해결 가능합니다 C++ 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 #include using namespace std; int fib(int n) { if ( n > a; int f = fib(a); cout
코딩 문제/백준
2021. 6. 29. 12:06