Skip to content

Commit 080a1cd

Browse files
authored
Update README.md
1 parent a7e81ca commit 080a1cd

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -9,22 +9,22 @@
99

1010
| 문제 이름 | 난이도 | 메모 | 풀이 | 문제 출처 |
1111
|:----------:|:--------:|:-----:|:------:|:------:|
12-
| ATM | 🟩 | 그리디 알고리즘 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ11399.md) | [문제](https://www.acmicpc.net/problem/11399)
13-
| 연료 채우기 | 🟨 | 그리디 알고리즘 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ1826.md) | [문제](https://www.acmicpc.net/problem/1826)
14-
| 로프 | 🟩 | 그리디 알고리즘 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ2217.md) | [문제](https://www.acmicpc.net/problem/2217)
15-
| 전화번호 목록 | 🟨 | Trie(PrefixTree) | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ5052.md) | [문제](https://www.acmicpc.net/problem/5052)
16-
| 포도주 시식 | 🟨 | 다이나믹 프로그래밍 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ2156.md) | [문제](https://www.acmicpc.net/problem/2156)
17-
| 알약 | 🟥 | 다이나믹 프로그래밍 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ4811.md) | [문제](https://www.acmicpc.net/problem/4811)
18-
| 쇠막대기 | 🟩 | 자료구조(스택) | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ10799.md) | [문제](https://www.acmicpc.net/problem/10799)
19-
| 나무 자르기 | 🟩 | 이진 탐색 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ2805.md) | [문제](https://www.acmicpc.net/problem/2805)
20-
| 강의실 배정 | 🟩 | 그리디 알고리즘, 자료구조(우선순위 큐) | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ11000.md) | [문제](https://www.acmicpc.net/problem/11000)
21-
| 최소 스패닝 트리 | 🟨 | Kruskal 알고리즘 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ1197.md) | [문제](https://www.acmicpc.net/problem/1197)
22-
| 숫자 정사각형 | 🟩 | 브루트 포스 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ1051.md) | [문제](https://www.acmicpc.net/problem/1051)
12+
| ATM | 🟩 | 그리디 알고리즘 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ11399.md) | [문제](https://www.acmicpc.net/problem/11399) |
13+
| 연료 채우기 | 🟨 | 그리디 알고리즘 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ1826.md) | [문제](https://www.acmicpc.net/problem/1826) |
14+
| 로프 | 🟩 | 그리디 알고리즘 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ2217.md) | [문제](https://www.acmicpc.net/problem/2217) |
15+
| 전화번호 목록 | 🟨 | Trie(PrefixTree) | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ5052.md) | [문제](https://www.acmicpc.net/problem/5052) |
16+
| 포도주 시식 | 🟨 | 다이나믹 프로그래밍 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ2156.md) | [문제](https://www.acmicpc.net/problem/2156) |
17+
| 알약 | 🟥 | 다이나믹 프로그래밍 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ4811.md) | [문제](https://www.acmicpc.net/problem/4811) |
18+
| 쇠막대기 | 🟩 | 자료구조(스택) | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ10799.md) | [문제](https://www.acmicpc.net/problem/10799) |
19+
| 나무 자르기 | 🟩 | 이진 탐색 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ2805.md) | [문제](https://www.acmicpc.net/problem/2805) |
20+
| 강의실 배정 | 🟩 | 그리디 알고리즘, 자료구조(우선순위 큐) | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ11000.md) | [문제](https://www.acmicpc.net/problem/11000) |
21+
| 최소 스패닝 트리 | 🟨 | Kruskal 알고리즘 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ1197.md) | [문제](https://www.acmicpc.net/problem/1197) |
22+
| 숫자 정사각형 | 🟩 | 브루트 포스 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ1051.md) | [문제](https://www.acmicpc.net/problem/1051) |
2323
| 파스타 | 🟥 | 다이나믹 프로그래밍 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ5546.md) | [문제](https://www.acmicpc.net/problem/5546) |
24-
| 리모컨 | 🟨 | 브루트 포스 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ1107.md) | [문제](https://www.acmicpc.net/problem/1107)
24+
| 리모컨 | 🟨 | 브루트 포스 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ1107.md) | [문제](https://www.acmicpc.net/problem/1107) |
2525
| 이중 우선순위 큐 | 🟩 | 자료구조(MULTI SET) | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ7662.md) | [문제](https://www.acmicpc.net/problem/7662) |
2626
| 1로 만들기 | 🟩 | 다이나믹 프로그래밍 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ1463.md) | [문제](https://www.acmicpc.net/problem/1463) |
27-
27+
| 맥주마시면서 걸어가기 | 🟨 | 그래프 이론 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ9205.md) | [문제](https://www.acmicpc.net/problem/9205) |
2828

2929
## 자료구조 & 알고리즘
3030

0 commit comments

Comments
 (0)