Skip to content

Commit

Permalink
Improve README Files Readability
Browse files Browse the repository at this point in the history
  • Loading branch information
yuchia0221 committed Jun 13, 2022
1 parent e8d5901 commit b9edbe6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Binary Tree/110-BalancedBinaryTree/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class TreeNode:
self.right = right
```

### [Solution](/Binary%20Tree/110-BalancedBinaryTree/solution.py): Hash Table + DFS
### [Solution](/Binary%20Tree/110-BalancedBinaryTree/solution.py): Hash Table + Depth-First Search

```python
class Solution:
Expand Down
2 changes: 1 addition & 1 deletion Binary Tree/226-InvertBinaryTree/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class TreeNode:
self.right = right
```

### [Solution1](/Binary%20Tree/226-InvertBinaryTree/solution1.py): DFS(Recursion)
### [Solution1](/Binary%20Tree/226-InvertBinaryTree/solution1.py): Depth-First Search(Recursion)

```python
class Solution:
Expand Down

0 comments on commit b9edbe6

Please sign in to comment.