1 post tagged with "leetcode"
Bitwise operators 位元運算子
Posted on April, 2020起因 今天在寫 leetcode 的 201. Bitwise AND of Numbers Range的時侯,發現題目需要用使用到 binary bits 的東西 想法 把 M 和 N 都轉成 binary 後 一直向右 shift (K 次),去掉右邊的 bit ,直剩下的 M 和 N 是等於的 IF 有 M == N, 再住左 shift K 次 去補 0,就可以等到答案 ELSE…
Read full post