https://github.com/khemssharma/leetcode
Calmly practice DSA here...
https://github.com/khemssharma/leetcode
array leetcode logic problem-solving solutions strivers-sde-sheet
Last synced: about 1 month ago
JSON representation
Calmly practice DSA here...
- Host: GitHub
- URL: https://github.com/khemssharma/leetcode
- Owner: khemssharma
- Created: 2024-10-21T11:31:49.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-11-07T09:35:07.000Z (7 months ago)
- Last Synced: 2024-11-07T10:33:04.387Z (7 months ago)
- Topics: array, leetcode, logic, problem-solving, solutions, strivers-sde-sheet
- Language: JavaScript
- Homepage:
- Size: 23.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Leetcode Notes
## Two Pointers
In this approach two pointers move towards or opposite to each other.
It does not divide the search space logarithmicaly.
## Binary Search
In this approach we continuosly divide search space into two halves.
It divides the search space logarithmicaly.
## Dynamic Programming
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).
See my Leetcode Profile