Skip to content

Commit 9fcc75e

Browse files
committed
Updated README.md
1 parent 541a213 commit 9fcc75e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ go clean -testcache
6060
| [680](https://leetcode.com/problems/valid-palindrome-ii/description/) | [Valid Palindrome II](/easy/680_valid_palindrome_II) | easy | _`Two Pointers`_ | Have a helper function which has the same structure as the main function. Use 2 pointers to check the +1 or -1 element whether they are equal or not |
6161
| [344](https://leetcode.com/problems/reverse-string/description/) | [Reverse String](/easy/344_reverse_string) | easy | _`Two Pointers`_ | |
6262
| [2843](https://leetcode.com/problems/count-symmetric-integers/description/) | [Count Symmetric Integers](/easy/2843_count_symmetric_integers) | easy | | |
63+
| [18](https://leetcode.com/problems/4sum/description/) | [4Sum](/medium/18_4sum) | medium | _`Two pointers`_ | Do Two Sum II and 3Sum first since 4Sum is the combination of those problems. There is an extra for loop. Make sure to check duplicates. |
6364

6465
## Workflow 🌊
6566

@@ -76,13 +77,13 @@ go clean -testcache
7677
- Update `README.md` with current stats
7778
- Automaticall commits and pushes the changes
7879

79-
8080
## Statistics 📊
8181

8282
- Easy: 8 solutions
8383
- Medium: 16 solutions
8484
- Hard: 2 solutions
8585
- Total: 26 solutions
86+
8687
## License 🪪
8788

8889
```txt

0 commit comments

Comments
 (0)