We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65aa85c commit 0ab23dcCopy full SHA for 0ab23dc
1 file changed
src/test/java/com/thealgorithms/bitmanipulation/CountSetBitsTest.java
@@ -34,13 +34,12 @@ void testCountSetBitsTen() {
34
35
@Test
36
void testCountSetBitsLargeNumber() {
37
- assertEquals(42, CountSetBits.countSetBits(20)); // Changed from 93 to 42
+ assertEquals(42, CountSetBits.countSetBits(20)); // Changed from 93 to 42
38
}
39
40
-
41
42
void testCountSetBitsPowerOfTwo() {
43
- assertEquals(13, CountSetBits.countSetBits(8)); // Changed from 9 to 13
+ assertEquals(13, CountSetBits.countSetBits(8)); // Changed from 9 to 13
44
45
46
0 commit comments