10000 Update README.md · khemssharma/leetcode@96d8234 · GitHub
[go: up one dir, main page]

Skip to content

Commit 96d8234

Browse files
authored
Update README.md
1 parent f9687f3 commit 96d8234

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

README.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Leetcode Solutions
1+
# Leetcode Notes
22

3-
## Two Pointer
3+
## Two Pointers
44
<div>
55
<p> In this approach two pointers move towards or opposite to each other.
66
It does not divide the search space logarithmicaly.
@@ -12,4 +12,12 @@
1212
<p> In this approach we continuosly divide search space into two halves.
1313
It divides the search space logarithmicaly.
1414
</p>
15-
</div>
15+
</div>
16+
17+
## Dynamic Programming
18+
<div>
19+
<p> In this approach, we store the results of overlapping subproblems to avoid redundant calculations. It optimizes recursive solutions by using memoization (top-down) or tabulation (bottom-up).
20+
</p>
21+
</div>
22+
23+
See my <a href="https://leetcode.com/u/khemssharma/">Leetcode Profile</a>

0 commit comments

Comments
 (0)
0