https://github.com/saehun/leetcode-typescript
https://github.com/saehun/leetcode-typescript
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/saehun/leetcode-typescript
- Owner: saehun
- Created: 2020-04-10T02:24:30.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2022-03-26T11:58:21.000Z (about 3 years ago)
- Last Synced: 2025-04-01T21:29:16.853Z (about 2 months ago)
- Language: TypeScript
- Size: 302 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Leetcode solved in Typescript
## Inspirational
- Two sum
- Single number: using bitwise XOR
- Linked list cycle: Floyd cycle detection algorithm## Review needed
- 3sum
- Best time to buy and sell stock: O(n) solution is somehow simple and tricky(for me)## Techinques
### DP
- Word break### Sliding windows