@@ -83,22 +83,19 @@ This repository is a **comprehensive collection** of TypeScript algorithms and d
8383
8484### 🔍 Algorithms
8585
86- #### 🔎 Search Algorithms
87-
88- - ** [ Binary Search] ( src/algorithms/search/binary-search/binary-search.ts ) ** - Efficient search in sorted arrays
89- - ** [ Linear Search] ( src/algorithms/search/linear-search/linear-search.ts ) ** - Simple sequential search
90-
91- #### 🔄 Sorting Algorithms
92-
93- - ** [ Quick Sort] ( src/algorithms/sort/quick/quick-sort.ts ) ** - Divide and conquer sorting algorithm
94- - ** [ Bubble Sort] ( src/algorithms/sort/bubble-sort/bubble-sort.ts ) ** - Simple comparison-based sort
95- - ** [ Bubble Sort Simple] ( src/algorithms/sort/bubble-sort/bubble-sort-simple.ts ) ** - Simplified bubble sort implementation
86+ | Algorithm | Category | Description | Implementation |
87+ | ---------------------- | -------- | ------------------------------------- | ------------------------------------------------------------------ |
88+ | ** Binary Search** | Search | Efficient search in sorted arrays | [ View Code] ( src/algorithms/search/binary-search/binary-search.ts ) |
89+ | ** Linear Search** | Search | Simple sequential search | [ View Code] ( src/algorithms/search/linear-search/linear-search.ts ) |
90+ | ** Quick Sort** | Sort | Divide and conquer sorting algorithm | [ View Code] ( src/algorithms/sort/quick/quick-sort.ts ) |
91+ | ** Bubble Sort** | Sort | Simple comparison-based sort | [ View Code] ( src/algorithms/sort/bubble-sort/bubble-sort.ts ) |
92+ | ** Bubble Sort Simple** | Sort | Simplified bubble sort implementation | [ View Code] ( src/algorithms/sort/bubble-sort/bubble-sort-simple.ts ) |
9693
9794### 💻 Coding Challenges
9895
99- #### 👉 Two Pointers
100-
101- - ** [ Pair Sum Sorted] ( src/code-challanges/two-pointers/pair-sum-sorted.ts ) ** - Find pairs in sorted array that sum to target
96+ | Challenge | Category | Description | Implementation |
97+ | ------------------- | ------------ | --------------------------------------------- | ---------------------------------------------------------------- |
98+ | ** Pair Sum Sorted** | Two Pointers | Find pairs in sorted array that sum to target | [ View Code ] ( src/code-challanges/two-pointers/pair-sum-sorted.ts ) |
10299
103100### 🛠️ Utilities
104101
0 commit comments