Leetcode (go語言) 尋找數字的補碼

package main import ( "fmt" ) func findComplement(num int) int { tmp := num c := 0 for tmp > 0 { tmp >>= 1 c = c<<1 + 1 } return num ^ c } func main() {
相關文章
相關標籤/搜索