forked from shuboc/LeetCode-2
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jack
committed
Jan 11, 2017
1 parent
89fb7f3
commit 6d6d930
Showing
5 changed files
with
63 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
#!/usr/bin/env python | ||
# -*- coding: utf-8 -*- | ||
# Given a positive integer, output its complement number. The complement strategy is to flip the bits of its binary representation. | ||
# | ||
# Note: | ||
# The given integer is guaranteed to fit within the range of a 32-bit signed integer. | ||
# You could assume no leading zero bit in the integer’s binary representation. | ||
# Example 1: | ||
# Input: 5 | ||
# Output: 2 | ||
# Explanation: The binary representation of 5 is 101 (no leading zero bits), and its complement is 010. So you need to output 2. | ||
# Example 2: | ||
# Input: 1 | ||
# Output: 0 | ||
# Explanation: The binary representation of 1 is 1 (no leading zero bits), and its complement is 0. So you need to output 0. | ||
|
||
|
||
class Solution(object): | ||
def findComplement(self, num): | ||
""" | ||
:type num: int | ||
:rtype: int | ||
""" | ||
return 2 ** (len(bin(num)) - 2) - 1 - num | ||
|
||
|
||
class Solution2(object): | ||
def findComplement(self, num): | ||
i = 1 | ||
while i <= num: | ||
i <<= 1 | ||
return (i - 1) ^ num |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters