Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
Haleshot committed Aug 29, 2024
1 parent 15e947d commit af06375
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Neetcode/Neetcode_150/Two_Sum/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
- [Examples](#examples)
- [Constraints](#constraints)
- [Solutions](#solutions)
- [Approach 1: Brute Force (Time Limit Exceeded)](#approach-1-brute-force-time-limit-exceeded)
- [Approach 1: Brute Force](#approach-1-brute-force)
- [Approach 2: Hash Map](#approach-2-hash-map)
- [Complexity Analysis](#complexity-analysis)
- [Code Explanation](#code-explanation)
Expand Down Expand Up @@ -53,7 +53,7 @@ Output: [0,1]

## Solutions

### Approach 1: Brute Force (Time Limit Exceeded)
### Approach 1: Brute Force

```python
class Solution:
Expand Down

0 comments on commit af06375

Please sign in to comment.