Skip to content

Commit 173bcf4

Browse files
update posts
1 parent 96dfd49 commit 173bcf4

File tree

4 files changed

+8
-0
lines changed

4 files changed

+8
-0
lines changed

_posts/2024-06-23-leetcode-105.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ toc: true
1616

1717
[https://leetcode.com/problems/construct-binary-tree-from-preorder-and-inorder-traversal/](https://leetcode.com/problems/construct-binary-tree-from-preorder-and-inorder-traversal/)
1818

19+
## 내가 작성한 풀이
20+
1921
```java
2022
class Solution {
2123
public TreeNode buildTree(int[] preorder, int[] inorder) {

_posts/2024-06-23-leetcode-208.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ toc: true
1515

1616
[https://leetcode.com/problems/implement-trie-prefix-tree/](https://leetcode.com/problems/implement-trie-prefix-tree/)
1717

18+
## 내가 작성한 풀이
19+
1820
```java
1921
class Trie {
2022

_posts/2024-06-23-leetcode-230.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ toc: true
1515

1616
[https://leetcode.com/problems/kth-smallest-element-in-a-bst/](https://leetcode.com/problems/kth-smallest-element-in-a-bst/)
1717

18+
## 내가 작성한 풀이
19+
1820
```java
1921
class Solution {
2022
public int kthSmallest(TreeNode root, int k) {

_posts/2024-06-23-leetcode-79.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ toc: true
1515

1616
[https://leetcode.com/problems/word-search/](https://leetcode.com/problems/word-search/)
1717

18+
## 내가 작성한 풀이
19+
1820
```java
1921
class Solution {
2022
public boolean exist(char[][] board, String word) {

0 commit comments

Comments
 (0)