Skip to content

Commit 1fdccb9

Browse files
committed
컬럼 순서 변경
1 parent 41c6b44 commit 1fdccb9

File tree

1 file changed

+24
-24
lines changed

1 file changed

+24
-24
lines changed

README.md

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -7,30 +7,30 @@
77

88
## 푼 문제
99

10-
| 레벨 | 문제 이름 | 체감 난이도 | 메모 | 풀이 |
11-
|:----------:|:--------:|:-----:|:------:|:------:|
12-
| <img src="https://static.solved.ac/tier_small/8.svg" height="18px"> | [ATM](https://www.acmicpc.net/problem/11399) | 🟩 | 그리디 알고리즘 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ11399.md) |
13-
| <img src="https://static.solved.ac/tier_small/13.svg" height="18px"> | [연료 채우기](https://www.acmicpc.net/problem/1826) | 🟨 | 그리디 알고리즘 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ1826.md) |
14-
| <img src="https://static.solved.ac/tier_small/7.svg" height="18px"> | [로프](https://www.acmicpc.net/problem/2217) | 🟩 | 그리디 알고리즘 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ2217.md) |
15-
| <img src="https://static.solved.ac/tier_small/12.svg" height="18px"> | [전화번호 목록](https://www.acmicpc.net/problem/5052) | 🟨 | Trie(PrefixTree) | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ5052.md) |
16-
| <img src="https://static.solved.ac/tier_small/10.svg" height="18px"> | [포도주 시식](https://www.acmicpc.net/problem/2156) | 🟨 | 다이나믹 프로그래밍 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ2156.md) |
17-
| <img src="https://static.solved.ac/tier_small/11.svg" height="18px"> | [알약](https://www.acmicpc.net/problem/4811) | 🟥 | 다이나믹 프로그래밍 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ4811.md) |
18-
| <img src="https://static.solved.ac/tier_small/8.svg" height="18px"> | [쇠막대기](https://www.acmicpc.net/problem/10799) | 🟩 | 자료구조(스택) | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ10799.md) |
19-
| <img src="https://static.solved.ac/tier_small/8.svg" height="18px"> | [나무 자르기](https://www.acmicpc.net/problem/2805) | 🟩 | 이진 탐색 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ2805.md) |
20-
| <img src="https://static.solved.ac/tier_small/11.svg" height="18px"> | [강의실 배정](https://www.acmicpc.net/problem/11000) | 🟩 | 그리디 알고리즘, 자료구조(우선순위 큐) | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ11000.md) |
21-
| <img src="https://static.solved.ac/tier_small/12.svg" height="18px"> | [최소 스패닝 트리](https://www.acmicpc.net/problem/1197) | 🟨 | Kruskal 알고리즘 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ1197.md) |
22-
| <img src="https://static.solved.ac/tier_small/8.svg" height="18px"> | [숫자 정사각형](https://www.acmicpc.net/problem/1051) | 🟩 | 브루트 포스 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ1051.md) |
23-
| <img src="https://static.solved.ac/tier_small/11.svg" height="18px"> | [파스타](https://www.acmicpc.net/problem/5546) | 🟥 | 다이나믹 프로그래밍 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ5546.md) |
24-
| <img src="https://static.solved.ac/tier_small/11.svg" height="18px"> | [리모컨](https://www.acmicpc.net/problem/1107) | 🟨 | 브루트 포스 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ1107.md) |
25-
| <img src="https://static.solved.ac/tier_small/11.svg" height="18px"> | [이중 우선순위 큐](https://www.acmicpc.net/problem/7662) | 🟩 | 자료구조(MULTI SET) | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ7662.md) |
26-
| <img src="https://static.solved.ac/tier_small/8.svg" height="18px"> | [1로 만들기](https://www.acmicpc.net/problem/1463) | 🟩 | 다이나믹 프로그래밍 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ1463.md) |
27-
| <img src="https://static.solved.ac/tier_small/10.svg" height="18px"> | [맥주 마시면서 걸어가기](https://www.acmicpc.net/problem/9205) | 🟨 | 그래프 이론 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ9205.md) |
28-
| <img src="https://static.solved.ac/tier_small/11.svg" height="18px"> | [적록색약](https://www.acmicpc.net/problem/10026) | 🟩 | 깊이우선 탐색 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ10026.md) |
29-
| <img src="https://static.solved.ac/tier_small/15.svg" height="18px"> | [제곱 ㄴㄴ 수](https://www.acmicpc.net/problem/1016) | 🟥 | 에라토스테네스의 체 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ1016.md) |
30-
| <img src="https://static.solved.ac/tier_small/10.svg" height="18px"> | [RGB 거리](https://www.acmicpc.net/problem/1149) | 🟨 | 다이나믹 프로그래밍 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ1149.md) |
31-
| <img src="https://static.solved.ac/tier_small/13.svg" height="18px"> | [트리의 지름](https://www.acmicpc.net/problem/1167) | 🟨 | 그래프 이론 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ1167.md) |
32-
| <img src="https://static.solved.ac/tier_small/13.svg" height="18px"> | [트리의 순회](https://www.acmicpc.net/problem/2263) | 🟥 | 분할 정복 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ2263.md) |
33-
| <img src="https://static.solved.ac/tier_small/12.svg" height="18px"> | [서강 그라운드](https://www.acmicpc.net/problem/14938) | 🟨 | 프롤이드 와샬 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ14938.md) |
10+
| 레벨 | 체감 난이도 | 문제 이름 | 메모 | 풀이 |
11+
|:----------:|:-----:|:--------:|:------:|:------:|
12+
| <img src="https://static.solved.ac/tier_small/8.svg" height="18px"> | 🟩 | [ATM](https://www.acmicpc.net/problem/11399) | 그리디 알고리즘 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ11399.md) |
13+
| <img src="https://static.solved.ac/tier_small/13.svg" height="18px"> | 🟨 | [연료 채우기](https://www.acmicpc.net/problem/1826) | 그리디 알고리즘 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ1826.md) |
14+
| <img src="https://static.solved.ac/tier_small/7.svg" height="18px"> | 🟩 | [로프](https://www.acmicpc.net/problem/2217) | 그리디 알고리즘 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ2217.md) |
15+
| <img src="https://static.solved.ac/tier_small/12.svg" height="18px"> | 🟨 | [전화번호 목록](https://www.acmicpc.net/problem/5052) | Trie(PrefixTree) | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ5052.md) |
16+
| <img src="https://static.solved.ac/tier_small/10.svg" height="18px"> | 🟨 | [포도주 시식](https://www.acmicpc.net/problem/2156) | 다이나믹 프로그래밍 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ2156.md) |
17+
| <img src="https://static.solved.ac/tier_small/11.svg" height="18px"> | 🟥 | [알약](https://www.acmicpc.net/problem/4811) | 다이나믹 프로그래밍 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ4811.md) |
18+
| <img src="https://static.solved.ac/tier_small/8.svg" height="18px"> | 🟩 | [쇠막대기](https://www.acmicpc.net/problem/10799) | 자료구조(스택) | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ10799.md) |
19+
| <img src="https://static.solved.ac/tier_small/8.svg" height="18px"> | 🟩 | [나무 자르기](https://www.acmicpc.net/problem/2805) | 이진 탐색 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ2805.md) |
20+
| <img src="https://static.solved.ac/tier_small/11.svg" height="18px"> | 🟩 | [강의실 배정](https://www.acmicpc.net/problem/11000) | 그리디 알고리즘, 자료구조(우선순위 큐) | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ11000.md) |
21+
| <img src="https://static.solved.ac/tier_small/12.svg" height="18px"> | 🟨 | [최소 스패닝 트리](https://www.acmicpc.net/problem/1197) | Kruskal 알고리즘 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ1197.md) |
22+
| <img src="https://static.solved.ac/tier_small/8.svg" height="18px"> | 🟩 | [숫자 정사각형](https://www.acmicpc.net/problem/1051) | 브루트 포스 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ1051.md) |
23+
| <img src="https://static.solved.ac/tier_small/11.svg" height="18px"> | 🟥 | [파스타](https://www.acmicpc.net/problem/5546) | 다이나믹 프로그래밍 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ5546.md) |
24+
| <img src="https://static.solved.ac/tier_small/11.svg" height="18px"> | 🟨 | [리모컨](https://www.acmicpc.net/problem/1107) | 브루트 포스 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ1107.md) |
25+
| <img src="https://static.solved.ac/tier_small/11.svg" height="18px"> | 🟩 | [이중 우선순위 큐](https://www.acmicpc.net/problem/7662) | 자료구조(MULTI SET) | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ7662.md) |
26+
| <img src="https://static.solved.ac/tier_small/8.svg" height="18px"> | 🟩 | [1로 만들기](https://www.acmicpc.net/problem/1463) | 다이나믹 프로그래밍 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ1463.md) |
27+
| <img src="https://static.solved.ac/tier_small/10.svg" height="18px"> | 🟨 | [맥주 마시면서 걸어가기](https://www.acmicpc.net/problem/9205) | 그래프 이론 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ9205.md) |
28+
| <img src="https://static.solved.ac/tier_small/11.svg" height="18px"> | 🟩 | [적록색약](https://www.acmicpc.net/problem/10026) | 깊이우선 탐색 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ10026.md) |
29+
| <img src="https://static.solved.ac/tier_small/15.svg" height="18px"> | 🟥 | [제곱 ㄴㄴ 수](https://www.acmicpc.net/problem/1016) | 에라토스테네스의 체 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ1016.md) |
30+
| <img src="https://static.solved.ac/tier_small/10.svg" height="18px"> | 🟨 | [RGB 거리](https://www.acmicpc.net/problem/1149) | 다이나믹 프로그래밍 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ1149.md) |
31+
| <img src="https://static.solved.ac/tier_small/13.svg" height="18px"> | 🟨 | [트리의 지름](https://www.acmicpc.net/problem/1167) | 그래프 이론 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ1167.md) |
32+
| <img src="https://static.solved.ac/tier_small/13.svg" height="18px"> | 🟥 | [트리의 순회](https://www.acmicpc.net/problem/2263) | 분할 정복 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ2263.md) |
33+
| <img src="https://static.solved.ac/tier_small/12.svg" height="18px"> | 🟨 | [서강 그라운드](https://www.acmicpc.net/problem/14938) | 프롤이드 와샬 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ14938.md) |
3434

3535

3636
## 자료구조 & 알고리즘

0 commit comments

Comments
 (0)