Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,845 questions

51,766 answers

573 users

How to bitwise inverse the bits of a number in Swift

1 Answer

0 votes
import Foundation

let number = 153

print(String(number & 0xFFFFFFFF, radix: 2).padLeft(toLength: 32, withPad: "0"))
print(number)

let invertedNumber = ~number

print(String(invertedNumber & 0xFFFFFFFF, radix: 2).padLeft(toLength: 32, withPad: "0"))
print(invertedNumber)

extension String {
    func padLeft(toLength length: Int, withPad pad: String) -> String {
        return self.count < length ? String(repeating: pad, count: length - self.count) + self : self
    }
}




/*
run:

00000000000000000000000010011001
153
11111111111111111111111101100110
-154

*/

 



answered Jan 30, 2025 by avibootz

Related questions

1 answer 85 views
1 answer 91 views
1 answer 77 views
1 answer 85 views
1 answer 86 views
1 answer 91 views
1 answer 76 views
...