![JAR search and dependency download from the Maven repository](/logo.png)
g0401_0500.s0476_number_complement.Solution Maven / Gradle / Ivy
package g0401_0500.s0476_number_complement;
// #Easy #Bit_Manipulation #2022_07_20_Time_0_ms_(100.00%)_Space_40.7_MB_(65.79%)
public class Solution {
public int findComplement(int num) {
return ~num & ((Integer.highestOneBit(num) << 1) - 1);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy