|
2 | 2 | * [AllCombinationsOfSizeK](Backtracking/AllCombinationsOfSizeK.js) |
3 | 3 | * [GeneratePermutations](Backtracking/GeneratePermutations.js) |
4 | 4 | * [KnightTour](Backtracking/KnightTour.js) |
5 | | - * [NQueen](Backtracking/NQueen.js) |
| 5 | + * [NQueens](Backtracking/NQueens.js) |
6 | 6 | * [RatInAMaze](Backtracking/RatInAMaze.js) |
7 | 7 | * [Sudoku](Backtracking/Sudoku.js) |
8 | 8 | * [SumOfSubset](Backtracking/SumOfSubset.js) |
|
149 | 149 | * [CollatzSequence](Maths/CollatzSequence.js) |
150 | 150 | * [Coordinate](Maths/Coordinate.js) |
151 | 151 | * [CoPrimeCheck](Maths/CoPrimeCheck.js) |
| 152 | + * [CountNumbersDivisible](Maths/CountNumbersDivisible.js) |
152 | 153 | * [DecimalExpansion](Maths/DecimalExpansion.js) |
153 | 154 | * [DecimalIsolate](Maths/DecimalIsolate.js) |
154 | 155 | * [DegreeToRadian](Maths/DegreeToRadian.js) |
|
172 | 173 | * [IsDivisible](Maths/IsDivisible.js) |
173 | 174 | * [IsEven](Maths/IsEven.js) |
174 | 175 | * [IsOdd](Maths/IsOdd.js) |
| 176 | + * [isPalindromeIntegerNumber](Maths/isPalindromeIntegerNumber.js) |
175 | 177 | * [IsPronic](Maths/IsPronic.js) |
176 | 178 | * [IsSquareFree](Maths/IsSquareFree.js) |
177 | 179 | * [JugglerSequence](Maths/JugglerSequence.js) |
|
227 | 229 | * [Problem008](Project-Euler/Problem008.js) |
228 | 230 | * [Problem009](Project-Euler/Problem009.js) |
229 | 231 | * [Problem010](Project-Euler/Problem010.js) |
| 232 | + * [Problem011](Project-Euler/Problem011.js) |
230 | 233 | * [Problem012](Project-Euler/Problem012.js) |
231 | 234 | * [Problem013](Project-Euler/Problem013.js) |
232 | 235 | * [Problem014](Project-Euler/Problem014.js) |
|
237 | 240 | * [Problem020](Project-Euler/Problem020.js) |
238 | 241 | * [Problem023](Project-Euler/Problem023.js) |
239 | 242 | * [Problem025](Project-Euler/Problem025.js) |
| 243 | + * [Problem044](Project-Euler/Problem044.js) |
240 | 244 | * **Recursive** |
241 | 245 | * [BinaryEquivalent](Recursive/BinaryEquivalent.js) |
242 | 246 | * [BinarySearch](Recursive/BinarySearch.js) |
|
290 | 294 | * [ShellSort](Sorts/ShellSort.js) |
291 | 295 | * [SimplifiedWiggleSort](Sorts/SimplifiedWiggleSort.js) |
292 | 296 | * [StoogeSort](Sorts/StoogeSort.js) |
| 297 | + * [SwapSort](Sorts/SwapSort.js) |
293 | 298 | * [TimSort](Sorts/TimSort.js) |
294 | 299 | * [TopologicalSort](Sorts/TopologicalSort.js) |
295 | 300 | * **String** |
|
0 commit comments