https://github.com/iyehah/leetcode-solved-questions
This repository contains my solutions to various coding challenges from LeetCode.
https://github.com/iyehah/leetcode-solved-questions
leetcode-c leetcode-javascript leetcode-python3 leetcode-typescript
Last synced: 6 months ago
JSON representation
This repository contains my solutions to various coding challenges from LeetCode.
- Host: GitHub
- URL: https://github.com/iyehah/leetcode-solved-questions
- Owner: iyehah
- License: mit
- Created: 2024-08-10T14:27:56.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-09-09T00:06:01.000Z (about 1 year ago)
- Last Synced: 2024-09-10T01:49:01.408Z (about 1 year ago)
- Topics: leetcode-c, leetcode-javascript, leetcode-python3, leetcode-typescript
- Language: TypeScript
- Homepage:
- Size: 89.8 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Leetcode-Solved-Questions
This repository contains my solutions to various coding challenges from LeetCode.
# LeetCode Topics
## Hash Table
| |
| ------- |
| [0001-two-sum](https://github.com/iyehah/Leetcode-Solved-Questions/tree/master/0001-two-sum) |
| [0003-longest-substring-without-repeating-characters](https://github.com/iyehah/Leetcode-Solved-Questions/tree/master/0003-longest-substring-without-repeating-characters) |
| [0013-roman-to-integer](https://github.com/iyehah/Leetcode-Solved-Questions/tree/master/0013-roman-to-integer) |
| [0030-substring-with-concatenation-of-all-words](https://github.com/iyehah/Leetcode-Solved-Questions/tree/master/0030-substring-with-concatenation-of-all-words) |
## String
| |
| ------- |
| [0003-longest-substring-without-repeating-characters](https://github.com/iyehah/Leetcode-Solved-Questions/tree/master/0003-longest-substring-without-repeating-characters) |
| [0013-roman-to-integer](https://github.com/iyehah/Leetcode-Solved-Questions/tree/master/0013-roman-to-integer) |
| [0014-longest-common-prefix](https://github.com/iyehah/Leetcode-Solved-Questions/tree/master/0014-longest-common-prefix) |
| [0020-valid-parentheses](https://github.com/iyehah/Leetcode-Solved-Questions/tree/master/0020-valid-parentheses) |
| [0030-substring-with-concatenation-of-all-words](https://github.com/iyehah/Leetcode-Solved-Questions/tree/master/0030-substring-with-concatenation-of-all-words) |
## Sliding Window
| |
| ------- |
| [0003-longest-substring-without-repeating-characters](https://github.com/iyehah/Leetcode-Solved-Questions/tree/master/0003-longest-substring-without-repeating-characters) |
| [0030-substring-with-concatenation-of-all-words](https://github.com/iyehah/Leetcode-Solved-Questions/tree/master/0030-substring-with-concatenation-of-all-words) |
## Array
| |
| ------- |
| [0001-two-sum](https://github.com/iyehah/Leetcode-Solved-Questions/tree/master/0001-two-sum) |
| [0026-remove-duplicates-from-sorted-array](https://github.com/iyehah/Leetcode-Solved-Questions/tree/master/0026-remove-duplicates-from-sorted-array) |
## Linked List
| |
| ------- |
| [0002-add-two-numbers](https://github.com/iyehah/Leetcode-Solved-Questions/tree/master/0002-add-two-numbers) |
| [0021-merge-two-sorted-lists](https://github.com/iyehah/Leetcode-Solved-Questions/tree/master/0021-merge-two-sorted-lists) |
| [0025-reverse-nodes-in-k-group](https://github.com/iyehah/Leetcode-Solved-Questions/tree/master/0025-reverse-nodes-in-k-group) |
## Math
| |
| ------- |
| [0002-add-two-numbers](https://github.com/iyehah/Leetcode-Solved-Questions/tree/master/0002-add-two-numbers) |
| [0009-palindrome-number](https://github.com/iyehah/Leetcode-Solved-Questions/tree/master/0009-palindrome-number) |
| [0013-roman-to-integer](https://github.com/iyehah/Leetcode-Solved-Questions/tree/master/0013-roman-to-integer) |
## Recursion
| |
| ------- |
| [0002-add-two-numbers](https://github.com/iyehah/Leetcode-Solved-Questions/tree/master/0002-add-two-numbers) |
| [0021-merge-two-sorted-lists](https://github.com/iyehah/Leetcode-Solved-Questions/tree/master/0021-merge-two-sorted-lists) |
| [0025-reverse-nodes-in-k-group](https://github.com/iyehah/Leetcode-Solved-Questions/tree/master/0025-reverse-nodes-in-k-group) |
## Database
| |
| ------- |
| [0175-combine-two-tables](https://github.com/iyehah/Leetcode-Solved-Questions/tree/master/0175-combine-two-tables) |
| [0176-second-highest-salary](https://github.com/iyehah/Leetcode-Solved-Questions/tree/master/0176-second-highest-salary) |
## Trie
| |
| ------- |
| [0014-longest-common-prefix](https://github.com/iyehah/Leetcode-Solved-Questions/tree/master/0014-longest-common-prefix) |
## Stack
| |
| ------- |
| [0020-valid-parentheses](https://github.com/iyehah/Leetcode-Solved-Questions/tree/master/0020-valid-parentheses) |
## Two Pointers
| |
| ------- |
| [0026-remove-duplicates-from-sorted-array](https://github.com/iyehah/Leetcode-Solved-Questions/tree/master/0026-remove-duplicates-from-sorted-array) |