-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlabels.json
More file actions
122 lines (122 loc) · 2.55 KB
/
labels.json
File metadata and controls
122 lines (122 loc) · 2.55 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
[
{
"name": "🗂️ Array",
"color": "AED6F1",
"description": "배열(Array)"
},
{
"name": "🔗 Linked List",
"color": "A3E4D7",
"description": "연결 리스트(Linked List)"
},
{
"name": "🌲 Tree",
"color": "27AE60",
"description": "트리(Tree, Binary Search Tree 등)"
},
{
"name": "🕸️ Graph",
"color": "C39BD3",
"description": "그래프(Graph, DFS, BFS)"
},
{
"name": "🔍 DFS",
"color": "F5B7B1",
"description": "깊이 우선 탐색(Depth First Search)"
},
{
"name": "🌀 BFS",
"color": "A9CCE3",
"description": "너비 우선 탐색(Breadth First Search)"
},
{
"name": "🧮 DP",
"color": "F4D03F",
"description": "동적 계획법(Dynamic Programming)"
},
{
"name": "⚖️ Greedy",
"color": "F5CBA7",
"description": "그리디 알고리즘(Greedy Algorithm)"
},
{
"name": "🎯 Binary Search",
"color": "48C9B0",
"description": "이분 탐색(Binary Search)"
},
{
"name": "📍 Two Pointers",
"color": "16A085",
"description": "투 포인터(Two Pointers)"
},
{
"name": "📦 Stack",
"color": "D7BDE2",
"description": "스택(Stack)"
},
{
"name": "🛤️ Queue",
"color": "A3E4D7",
"description": "큐/덱(Queue, Deque)"
},
{
"name": "⛰️ Heap",
"color": "82E0AA",
"description": "힙/우선순위 큐(Heap/Priority Queue)"
},
{
"name": "📝 String",
"color": "E6B0AA",
"description": "문자열(String)"
},
{
"name": "🗃️ Hash",
"color": "D7DBDD",
"description": "해시 테이블/맵(Hash Table/Map)"
},
{
"name": "🔀 Sorting",
"color": "AF7AC5",
"description": "정렬(Sorting)"
},
{
"name": "🪆 Recursion",
"color": "E59866",
"description": "재귀 호출(Recursion)"
},
{
"name": "🛠️ Implementation",
"color": "566573",
"description": "구현 문제(Implementation)"
},
{
"name": "🧩 Brute Force",
"color": "F5B7B1",
"description": "완전 탐색(Brute Force)"
},
{
"name": "➗ Math",
"color": "7D3C98",
"description": "수학(Math, Prime, Combination)"
},
{
"name": "💡 Bitmask",
"color": "5DADE2",
"description": "비트마스크(Bitmask)"
},
{
"name": "🟢 Easy",
"color": "58D68D",
"description": "쉬움(Easy)"
},
{
"name": "🟡 Medium",
"color": "F4D03F",
"description": "중간(Medium)"
},
{
"name": "🔴 Hard",
"color": "E74C3C",
"description": "어려움(Hard)"
}
]