You are viewing a single comment's thread. Return to all comments →
Kotlin Solution. Note that the type was changed from Long to UInt
fun flippingBits(n: UInt): UInt { return n.inv() }
Seems like cookies are disabled on this browser, please enable them to open this website
Flipping bits
You are viewing a single comment's thread. Return to all comments →
Kotlin Solution. Note that the type was changed from Long to UInt