https://github.com/irsol/leetcode-solutions
https://github.com/irsol/leetcode-solutions
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/irsol/leetcode-solutions
- Owner: irsol
- Created: 2025-05-15T11:11:43.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2025-05-15T11:21:04.000Z (8 months ago)
- Last Synced: 2025-05-15T12:28:34.328Z (8 months ago)
- Language: TypeScript
- Size: 101 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# LeetCode Solutions in TypeScript
| # | Title | Solution | Difficulty |
|---|---------------------|----------|------------|
| 1 | Two sum | [Link](./problems/0001-add-two-sum/solution.ts) | Easy |
| 2 | Add Two Numbers | [Link](./problems/0002-add-two-numbers/solution.ts) | Medium |
| 3 | Longest substring | [Link](./problems/0003-longest-substring-unique-characters/solution.ts) | Medium |
| 4 | Median of two sorted arrays | [Link](./problems/0004-median-of-two-sorted-arrays/solution.ts) | Hard |
| 9 | Palindrome number | [Link](./problems/0009-palindrom-number/solution.ts)| Easy |