945 Commits

Author SHA1 Message Date
e159c6647b updating DIRECTORY.md 2021-05-23 07:35:47 +00:00
87f0c64e2f Merge pull request #357 from c-utkarsh/add-matrix-exponentiation-recursive
Added Matrix Exponentiation (Recursive)
2021-05-23 13:05:33 +05:30
8e90893e39 updating DIRECTORY.md 2021-05-23 07:28:51 +00:00
e0eb0631f4 Merge pull request #371 from Sandeepan-Das/add-CircularQueue
Add Circular Queue
2021-05-23 12:58:38 +05:30
8efbe3768d updating DIRECTORY.md 2021-05-23 07:16:45 +00:00
b4a79928a2 Merge pull request #416 from arnabuchiha/master
Implemented  ConvexHull using Graham Scan
2021-05-23 12:46:28 +05:30
74a3be8f1d Merge pull request #609 from raklaptudirm/master
Fix entire codebase
2021-05-23 09:06:56 +02:00
cf98deda8e fix: Fixed TODO message
Need to add Doctests to all Algos
2021-05-22 21:20:36 +05:30
a93abac98d Fixes #539 2021-05-22 21:13:00 +05:30
51f80fe2b0 fix: Fix MergeSort conflict 2021-05-22 21:02:14 +05:30
d220eb987a Merge pull request #599 from guyariely/master
fixed the merge implementation in MergeSort
2021-05-22 19:54:16 +05:30
2022a74286 fixed mergeSort algorithm 2021-05-22 14:41:53 +03:00
2c1eba4ea6 updating DIRECTORY.md 2021-05-22 10:50:49 +00:00
21c3ac4d0a Merge pull request #602 from thivagar-manickam/project-euler
Project euler problem 10
2021-05-22 16:20:27 +05:30
03ef882225 updating DIRECTORY.md 2021-05-21 16:10:28 +00:00
94b202bd00 Merge pull request #608 from MarkSFrancis/shuf
Added shuf, a way to get a random sample from a large dataset
2021-05-21 21:40:11 +05:30
4f348ccb5b Formatted with standard 2021-05-21 16:47:22 +01:00
2bf0ccf00d fix(LinearAlgebra): Fix BADLY broken doctest. All tests passed. 2021-05-21 13:02:40 +05:30
b77c0a18e2 fix(LevenshteinDistance.test.js): Fixed broken test 2021-05-21 12:52:06 +05:30
7992caa54f feat(PermutateString.js): Array.prototype.map() -> Array.prototype.forEach() 2021-05-21 12:35:12 +05:30
c62d169c21 style(IntroSort.js): let to const 2021-05-21 11:57:24 +05:30
8b7c5fdc57 style(InsertionSort.js): Changed var to let (scope taken into account) 2021-05-21 11:52:37 +05:30
b702faadc5 feat(Polynomial.js): Fixed bad code 2021-05-21 11:38:25 +05:30
f1769c4df6 feat(ZeroOneKnapsack.js): Fixed bad code 2021-05-21 11:27:48 +05:30
ca4c1a62af style: Fixed most styles (according to standardjs) 2021-05-21 11:16:11 +05:30
37ef611136 updating DIRECTORY.md 2021-05-21 04:56:53 +00:00
80ed495a59 Merge pull request #600 from raklaptudirm/master
Added `sqrt()` function. Changes Approved by @marsonya
2021-05-21 10:26:33 +05:30
55ea4efc1d Added to directory 2021-05-20 15:30:53 +01:00
9268922980 Added shuf 2021-05-20 15:28:25 +01:00
054622c999 style(SquareRoot.js): Fixed style 2021-05-13 13:18:51 +05:30
2c1052da8b feat(SquareRoot.js): Added TypeError 2021-05-13 13:07:15 +05:30
a22c0486e7 style(Maths/SquareRoot.js): Fixed tabs according to standard 2021-05-13 12:46:01 +05:30
380cf312fa Bump hosted-git-info from 2.8.8 to 2.8.9
Bumps [hosted-git-info](https://github.com/npm/hosted-git-info) from 2.8.8 to 2.8.9.
- [Release notes](https://github.com/npm/hosted-git-info/releases)
- [Changelog](https://github.com/npm/hosted-git-info/blob/v2.8.9/CHANGELOG.md)
- [Commits](https://github.com/npm/hosted-git-info/compare/v2.8.8...v2.8.9)

Signed-off-by: dependabot[bot] <support@github.com>
2021-05-11 22:38:37 +00:00
311c86a1cf Updated the problem10 solution 2021-05-08 10:37:35 +05:30
2356a2cdcc Bump lodash from 4.17.20 to 4.17.21
Bumps [lodash](https://github.com/lodash/lodash) from 4.17.20 to 4.17.21.
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](https://github.com/lodash/lodash/compare/4.17.20...4.17.21)

Signed-off-by: dependabot[bot] <support@github.com>
2021-05-07 03:33:59 +00:00
712d428ae0 updating DIRECTORY.md 2021-05-07 03:31:59 +00:00
7d0bb406d9 Merge pull request #601 from thivagar-manickam/master
Added test script for CreatePermutations and file name change
2021-05-07 09:01:43 +05:30
1ce4168664 Project euler problem 10 solution and test script 2021-05-06 21:28:40 +05:30
9f24341b5b Added test script for CreatePermutations and file name change 2021-05-06 21:08:47 +05:30
32b77affd3 Create SquareRoot.js 2021-05-06 10:46:27 +05:30
3e5489d8ef Merge pull request #596 from raklaptudirm/master
Update PrimeCheck.js
2021-05-06 10:12:03 +05:30
4d1c6ea551 fixed the merge implementation in MergeSort 2021-05-05 12:24:42 +03:00
cf5ff92ef9 Add tests for Maths/IsDivisible 2021-05-05 14:23:50 +09:00
469a0e06c8 Improve input validation of isDivisible
- Use Number.isFinite() for validation
- Throw an error instead of returning a string
- Instead of returning a string, return false when divisor === 0 since no numbers are in fact divisible by 0.
2021-05-05 14:22:10 +09:00
5a0db06e8c Fix case of file name of isDivisible 2021-05-05 14:21:20 +09:00
52cb6a8093 Added 2 division check 2021-05-05 09:32:58 +05:30
a001e69a91 Update PrimeCheck.js 2021-05-05 09:29:48 +05:30
1f232065d4 updating DIRECTORY.md 2021-04-29 13:27:32 +00:00
625296b5bc Add Vector2 (#593)
* add Vector2.js
* Rename Data-Structures/Vector2.js to Data-Structures/Vectors/Vector2.js
2021-04-30 01:27:11 +12:00
9e384f705c updating DIRECTORY.md 2021-04-16 01:07:26 +00:00