Skip to content

Commit

Permalink
✨ feat: 4개의 신규 알고리즘 분류를 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
wzrabbit committed Jul 25, 2024
1 parent 7a57a65 commit 0f9561b
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
8 changes: 8 additions & 0 deletions totamjung/js/db.js
Original file line number Diff line number Diff line change
Expand Up @@ -395,6 +395,14 @@ const db = {
200: { name: '함수형 그래프', tag: 'functional_graph', alias: [] },
201: { name: '방향 비순환 그래프', tag: 'dag', alias: [] },
202: { name: '최단 경로', tag: 'shortest_path', alias: [] },
203: { name: '린드스트롬-게셀-비엔노 보조정리', tag: 'lgv', alias: [] },
204: { name: '지수승강 보조정리', tag: 'lte', alias: [] },
205: { name: '유리 등차수열의 내림 합', tag: 'floor_sum', alias: [] },
206: {
name: '자릿수를 이용한 다이나믹 프로그래밍',
tag: 'dp_digit',
alias: [],
},
};
// 제거해야 하는 기호 [, A->a 공백 _ - / tag: #]
export default db;
9 changes: 8 additions & 1 deletion totamjung/js/widget.js
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,10 @@ const algorithmToId = {
'함수형 그래프': 200,
'방향 비순환 그래프': 201,
'최단 경로': 202,

'린드스트롬–게셀–비엔노 보조정리': 203,
'지수승강 보조정리': 204,
'유리 등차수열의 내림 합': 205,
'자릿수를 이용한 다이나믹 프로그래밍': 206,
Mathematics: 1,
Implementation: 2,
'Dynamic Programming': 3,
Expand Down Expand Up @@ -403,6 +406,10 @@ const algorithmToId = {
'Functional Graph': 200,
'Directed Acyclic Graph': 201,
'Shortest Path': 202,
'Lindström–gessel–viennot Lemma': 203,
'Lifting The Exponent Lemma': 204,
'Sum Of Floor Of Rational Arithmetic Sequence': 205,
'Digit Dp': 206,
};

const resetSettings = {
Expand Down

0 comments on commit 0f9561b

Please sign in to comment.