Skip to content

Commit 632f99f

Browse files
author
Niki.kalwar
committedJun 18, 2021
PR:added the condition to handle negative integers for fastPowering algorithm. trekhleb#591
2 parents 56bbc99 + 43b806f commit 632f99f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/algorithms/math/fast-powering/__test__/fastPowering.test.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ describe('fastPowering', () => {
1919
expect(fastPowering(16, 16)).toBe(18446744073709552000);
2020
expect(fastPowering(7, 21)).toBe(558545864083284000);
2121
expect(fastPowering(100, 9)).toBe(1000000000000000000);
22-
expect(fastPowering(5, -5)).toBe(0.0003200000000000002);
22+
expect(fastPowering(5, -5)).toBe(-0.0003200000000000002);
2323
expect(fastPowering(-5, 5)).toBe(-3125);
24-
expect(fastPowering(-5, -5)).toBe(-0.0003200000000000002);
24+
expect(fastPowering(-5, -5)).toBe(0.0003200000000000002);
2525
});
2626
});

0 commit comments

Comments
 (0)
Please sign in to comment.