From ec373509cb80693afbfda7beb707f7fbd277fbbb Mon Sep 17 00:00:00 2001 From: Seongjun Jang <41983244+junnei@users.noreply.github.com> Date: Thu, 18 Apr 2024 17:17:45 +0900 Subject: [PATCH] [Add] Update Novice-High docs --- docs/novice-high/04/_category_.json | 6 ++++++ docs/novice-high/04/index.md | 7 +++++++ docs/novice-high/05/_category_.json | 6 ++++++ docs/novice-high/05/index.md | 7 +++++++ docs/novice-high/06/_category_.json | 6 ++++++ docs/novice-high/06/index.md | 7 +++++++ docs/novice-high/07/_category_.json | 6 ++++++ docs/novice-high/07/index.md | 7 +++++++ docs/novice-high/08/_category_.json | 6 ++++++ docs/novice-high/08/index.md | 7 +++++++ docs/novice-high/09/_category_.json | 6 ++++++ docs/novice-high/09/index.md | 7 +++++++ docs/novice-high/10/_category_.json | 6 ++++++ docs/novice-high/10/index.md | 7 +++++++ 14 files changed, 91 insertions(+) create mode 100644 docs/novice-high/04/_category_.json create mode 100644 docs/novice-high/04/index.md create mode 100644 docs/novice-high/05/_category_.json create mode 100644 docs/novice-high/05/index.md create mode 100644 docs/novice-high/06/_category_.json create mode 100644 docs/novice-high/06/index.md create mode 100644 docs/novice-high/07/_category_.json create mode 100644 docs/novice-high/07/index.md create mode 100644 docs/novice-high/08/_category_.json create mode 100644 docs/novice-high/08/index.md create mode 100644 docs/novice-high/09/_category_.json create mode 100644 docs/novice-high/09/index.md create mode 100644 docs/novice-high/10/_category_.json create mode 100644 docs/novice-high/10/index.md diff --git a/docs/novice-high/04/_category_.json b/docs/novice-high/04/_category_.json new file mode 100644 index 0000000..d83a2c8 --- /dev/null +++ b/docs/novice-high/04/_category_.json @@ -0,0 +1,6 @@ +{ + "position": 4, + "label": "04. 이진탐색", + "collapsible": true, + "collapsed": true +} diff --git a/docs/novice-high/04/index.md b/docs/novice-high/04/index.md new file mode 100644 index 0000000..b4cdb18 --- /dev/null +++ b/docs/novice-high/04/index.md @@ -0,0 +1,7 @@ +--- +sidebar_position: 100 +--- + +# 이진탐색 + +이진탐색과 순차탐색의 차이와 lower/upper bound의 개념에 대해 배우게 됩니다. \ No newline at end of file diff --git a/docs/novice-high/05/_category_.json b/docs/novice-high/05/_category_.json new file mode 100644 index 0000000..af92fdc --- /dev/null +++ b/docs/novice-high/05/_category_.json @@ -0,0 +1,6 @@ +{ + "position": 5, + "label": "05. 스택, 큐, 덱", + "collapsible": true, + "collapsed": true +} diff --git a/docs/novice-high/05/index.md b/docs/novice-high/05/index.md new file mode 100644 index 0000000..6f827be --- /dev/null +++ b/docs/novice-high/05/index.md @@ -0,0 +1,7 @@ +--- +sidebar_position: 100 +--- + +# 스택, 큐, 덱 + +스택, 큐, 덱의 정의와 그 특징에 대해 배우게 됩니다. \ No newline at end of file diff --git a/docs/novice-high/06/_category_.json b/docs/novice-high/06/_category_.json new file mode 100644 index 0000000..3533132 --- /dev/null +++ b/docs/novice-high/06/_category_.json @@ -0,0 +1,6 @@ +{ + "position": 6, + "label": "06. 트리", + "collapsible": true, + "collapsed": true +} diff --git a/docs/novice-high/06/index.md b/docs/novice-high/06/index.md new file mode 100644 index 0000000..6258fa9 --- /dev/null +++ b/docs/novice-high/06/index.md @@ -0,0 +1,7 @@ +--- +sidebar_position: 100 +--- + +# 트리 + +트리의 정의와 종류, 그리고 탐색하는 방법에 대해 배우게 됩니다. \ No newline at end of file diff --git a/docs/novice-high/07/_category_.json b/docs/novice-high/07/_category_.json new file mode 100644 index 0000000..633997f --- /dev/null +++ b/docs/novice-high/07/_category_.json @@ -0,0 +1,6 @@ +{ + "position": 7, + "label": "07. 해싱", + "collapsible": true, + "collapsed": true +} diff --git a/docs/novice-high/07/index.md b/docs/novice-high/07/index.md new file mode 100644 index 0000000..61ecf8f --- /dev/null +++ b/docs/novice-high/07/index.md @@ -0,0 +1,7 @@ +--- +sidebar_position: 100 +--- + +# 해싱 + +해시의 종류와 충돌을 해결하는 방법에 대해 배우게 됩니다. \ No newline at end of file diff --git a/docs/novice-high/08/_category_.json b/docs/novice-high/08/_category_.json new file mode 100644 index 0000000..d514480 --- /dev/null +++ b/docs/novice-high/08/_category_.json @@ -0,0 +1,6 @@ +{ + "position": 8, + "label": "08. DP", + "collapsible": true, + "collapsed": true +} diff --git a/docs/novice-high/08/index.md b/docs/novice-high/08/index.md new file mode 100644 index 0000000..19805b0 --- /dev/null +++ b/docs/novice-high/08/index.md @@ -0,0 +1,7 @@ +--- +sidebar_position: 100 +--- + +# DP + +DP의 정의와 해당 개념을 이용해 풀리는 대표적인 문제들을 접해보게 됩니다. \ No newline at end of file diff --git a/docs/novice-high/09/_category_.json b/docs/novice-high/09/_category_.json new file mode 100644 index 0000000..54f8458 --- /dev/null +++ b/docs/novice-high/09/_category_.json @@ -0,0 +1,6 @@ +{ + "position": 9, + "label": "09. 그래프 탐색", + "collapsible": true, + "collapsed": true +} diff --git a/docs/novice-high/09/index.md b/docs/novice-high/09/index.md new file mode 100644 index 0000000..e22c8f2 --- /dev/null +++ b/docs/novice-high/09/index.md @@ -0,0 +1,7 @@ +--- +sidebar_position: 100 +--- + +# 그래프 탐색 + +그래프의 종류와 탐색 방법에 대해 배우게 됩니다. \ No newline at end of file diff --git a/docs/novice-high/10/_category_.json b/docs/novice-high/10/_category_.json new file mode 100644 index 0000000..9df47fa --- /dev/null +++ b/docs/novice-high/10/_category_.json @@ -0,0 +1,6 @@ +{ + "position": 10, + "label": "10. 그래프 알고리즘", + "collapsible": true, + "collapsed": true +} diff --git a/docs/novice-high/10/index.md b/docs/novice-high/10/index.md new file mode 100644 index 0000000..d1cf7fc --- /dev/null +++ b/docs/novice-high/10/index.md @@ -0,0 +1,7 @@ +--- +sidebar_position: 100 +--- + +# 그래프 알고리즘 + +그래프 내에서의 최단거리를 구하는 알고리즘과 최소비용신장 트리에 대해 배우게 됩니다. \ No newline at end of file