Skip to content

Commit cc22c9c

Browse files
committed
[Add] Initial document data
1 parent b6402dc commit cc22c9c

File tree

11 files changed

+71
-1
lines changed

11 files changed

+71
-1
lines changed

docs/intro.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ sidebar_position: 0
66

77
Get Codes
88

9-
```python
9+
```python showLineNumbers
1010
print("Hello, World!")
1111
```
+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"position": 100,
3+
"label": "배열",
4+
"collapsible": true,
5+
"collapsed": true
6+
}

docs/novice-high/02/01/index.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
sidebar_position: 100
3+
---
4+
5+
# 배열
6+
7+
<sup>기본 개념 1개, 연습 문제 0개, 테스트 1개</sup>
8+
9+
배열에서 탐색, 삽입, 삭제하는 경우 시간복잡도를 계산하는 방법에 대해 배우게 됩니다.

docs/novice-high/02/02/1.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
sidebar_position: 1
3+
---
4+
5+
# 동적 배열의 이해

docs/novice-high/02/02/2.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
sidebar_position: 2
3+
---
4+
5+
# 정수 명령 처리 5
6+
7+
```python novice-high/02/02/2
8+
print("Hello, World!")
9+
```
+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"position": 200,
3+
"label": "Dynamic Array",
4+
"collapsible": true,
5+
"collapsed": true
6+
}

docs/novice-high/02/02/index.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
sidebar_position: 200
3+
---
4+
5+
# Dynamic Array
6+
7+
<sup>기본 개념 1개, 연습 문제 0개, 테스트 1개</sup>
8+
9+
동적 배열의 정의와 그 특징에 대해 배우게 됩니다.

docs/novice-high/02/_category_.json

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"position": 2,
3+
"label": "02. 배열, 연결 리스트",
4+
"collapsible": true,
5+
"collapsed": true
6+
}

docs/novice-high/02/index.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
sidebar_position: 100
3+
---
4+
5+
# 배열, 연결 리스트
6+
7+
배열, 연결 리스트의 정의와 그 차이에 대해 배우게 됩니다.

docs/novice-high/03/_category_.json

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"position": 3,
3+
"label": "03. 정렬",
4+
"collapsible": true,
5+
"collapsed": true
6+
}

docs/novice-high/03/index.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
sidebar_position: 100
3+
---
4+
5+
# 정렬
6+
7+
각각의 정렬에 대한 정의와 그 특징에 대해 배우게 됩니다.

0 commit comments

Comments
 (0)