We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6af6323 commit 07bc4a4Copy full SHA for 07bc4a4
src/algorithms/math/bits/__test__/countSetBits.test.js
@@ -15,5 +15,6 @@ describe('countSetBits', () => {
15
expect(countSetBits(-21)).toBe(30);
16
expect(countSetBits(-255)).toBe(25);
17
expect(countSetBits(-1023)).toBe(23);
18
+ expect(countSetBits(-4294967296)).toBe(0);
19
});
20
0 commit comments