Welcome to my repository of solutions to problems from LeetCode!
This repository is organized into folders by algorithms, data structures, and problem categories. Each folder contains my implementations and solutions written in TypeScript.
The project is structured as follows:
- Data Structures - Custom implementations or uses of data structures.
- Algorithms - Implementations of popular algorithms.
- Problems - Solutions to various LeetCode problems.
| Title | Code Path |
|---|---|
| BinaryTree | BinaryTree.ts |
| DoublyLinkedList | DoublyLinkedList.ts |
| MinHeap | MinHeap.ts |
| SinglyLinkedList | SinglyLinkedList.ts |
| Stack | Stack.ts |
| Title | Code Path |
|---|---|
| Bubble sort | bubble-sort.ts |
| Dijkstra | dijkstra.ts |
| Merge sort | merge-sort.ts |
| Quick sort | quick-sort.ts |