Add factorialBigInt

This commit is contained in:
trainer2001 2021-12-12 17:23:51 +05:30
parent 2b4f12622a
commit e11827b833
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,12 @@
import factorialBigInt from '../factorialBigInt';
describe('factorialBigInt', () => {
it('should calculate factorial', () => {
expect(factorialBigInt(0n)).toBe(1n);
expect(factorialBigInt(1n)).toBe(1n);
expect(factorialBigInt(5n)).toBe(120n);
expect(factorialBigInt(8n)).toBe(40320n);
expect(factorialBigInt(10n)).toBe(3628800n);
expect(factorialBigInt(100n)).toBe(93326215443944152681699238856266700490715968264381621468592963895217599993229915608941463976156518286253697920827223758251185210916864000000000000000000000000n);
});
});

View File

@ -0,0 +1,13 @@
/**
* @param {bigint} number
* @return {bigint}
*/
export default function factorialBigInt(number) {
let result = 1n;
for (let i = 2n; i <= number; i += 1n) {
result *= i;
}
return result;
}