配对交换。编写程序,交换某个整数的奇数位和偶数位,尽量使用较少的指令(也就是说,位0与位1交换,位2与位3交换,以此类推)。
示例1:
输入:num = 2(或者0b10)
输出 1 (或者 0b01)
示例2:
输入:num = 3
输出:3
提示:
num的范围在[0, 2^30 - 1]之间,不会发生整数溢出。
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/exchange-lcci
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
class Solution(object):
def exchangeBits(self, num):
"""
:type num: int
:rtype: int
"""
nums = bin(num)[2:]
if len(nums)%2:
nums='0'+nums
res = ""
i=0
while i < len(nums) - 1:
res += nums[i + 1]
res += nums[i]
i += 2
return int(res,2)
执行结果:
通过
显示详情
执行用时 :20 ms, 在所有 Python 提交中击败了63.83%的用户
内存消耗 :12.6 MB, 在所有 Python 提交中击败了100.00%的用户