Skip to content

Commit

Permalink
[Chore] Add Leet-Code
Browse files Browse the repository at this point in the history
  • Loading branch information
junnei committed Oct 18, 2024
1 parent 967a23e commit 588b9f4
Show file tree
Hide file tree
Showing 20 changed files with 155 additions and 1 deletion.
9 changes: 9 additions & 0 deletions docs/leet-code/01/01/1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
sidebar_position: 1
---

# 48. Rotate Image

```python novice-high/02/02/2
print("Hello, World!")
```
9 changes: 9 additions & 0 deletions docs/leet-code/01/01/2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
sidebar_position: 2
---

# 54. Spiral Matrix

```python novice-high/02/02/2
print("Hello, World!")
```
9 changes: 9 additions & 0 deletions docs/leet-code/01/01/3.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
sidebar_position: 3
---

# 56. Merge Intervals

```python novice-high/02/02/2
print("Hello, World!")
```
9 changes: 9 additions & 0 deletions docs/leet-code/01/01/4.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
sidebar_position: 4
---

# 238. Product of Array Except Self

```python novice-high/02/02/2
print("Hello, World!")
```
6 changes: 6 additions & 0 deletions docs/leet-code/01/01/_category_.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"position": 100,
"label": "Array & Strings",
"collapsible": true,
"collapsed": true
}
9 changes: 9 additions & 0 deletions docs/leet-code/01/01/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
sidebar_position: 100
---

# Array & Strings

<sup>기본 개념 2개, 심화 문제 2개</sup>

Array & Strings의 정의와 그 특징에 대해 배우게 됩니다.
9 changes: 9 additions & 0 deletions docs/leet-code/01/02/1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
sidebar_position: 1
---

# 19. Remove Nth Node From End of List

```python novice-high/02/04/3
print("Hello, World!")
```
9 changes: 9 additions & 0 deletions docs/leet-code/01/02/2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
sidebar_position: 2
---

# 25. Reverse Nodes in k-Group

```python novice-high/02/04/3
print("Hello, World!")
```
9 changes: 9 additions & 0 deletions docs/leet-code/01/02/3.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
sidebar_position: 3
---

# 141. Linked List Cycle

```python novice-high/02/04/3
print("Hello, World!")
```
6 changes: 6 additions & 0 deletions docs/leet-code/01/02/_category_.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"position": 200,
"label": "Linked Lists",
"collapsible": true,
"collapsed": true
}
9 changes: 9 additions & 0 deletions docs/leet-code/01/02/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
sidebar_position: 100
---

# Linked Lists

<sup>기본 개념 1개, 심화 문제 2개</sup>

Linked Lists의 정의와 그 특징에 대해 배우게 됩니다.
9 changes: 9 additions & 0 deletions docs/leet-code/01/03/1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
sidebar_position: 1
---

# 125. Valid Palindrome

```python novice-high/02/05/2
print("Hello, World!")
```
9 changes: 9 additions & 0 deletions docs/leet-code/01/03/2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
sidebar_position: 2
---

# 11. Container With Most Water

```python novice-high/02/05/2
print("Hello, World!")
```
9 changes: 9 additions & 0 deletions docs/leet-code/01/03/3.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
sidebar_position: 3
---

# 42. Trapping Rain Water

```python novice-high/02/05/2
print("Hello, World!")
```
6 changes: 6 additions & 0 deletions docs/leet-code/01/03/_category_.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"position": 300,
"label": "Two Pointers",
"collapsible": true,
"collapsed": true
}
9 changes: 9 additions & 0 deletions docs/leet-code/01/03/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
sidebar_position: 100
---

# Two Pointers

<sup>기본 개념 2개, 심화 문제 1개</sup>

Two Pointers의 정의와 그 쓰임에 대해 배우게 됩니다.
6 changes: 6 additions & 0 deletions docs/leet-code/01/_category_.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"position": 1,
"label": "Week 1",
"collapsible": true,
"collapsed": true
}
7 changes: 7 additions & 0 deletions docs/leet-code/01/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
sidebar_position: 100
---

# Week 1

Week 1. Array / Linked Lists / Two Pointers
6 changes: 6 additions & 0 deletions docs/leet-code/_category_.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"position": 1,
"label": "Leet Code",
"collapsible": true,
"collapsed": true
}
2 changes: 1 addition & 1 deletion docs/novice-high/_category_.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"position": 3,
"position": 1,
"label": "Novice High",
"collapsible": true,
"collapsed": true
Expand Down

0 comments on commit 588b9f4

Please sign in to comment.