-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfind_kth_bit_in_Nth_Binary_string.py
56 lines (41 loc) · 1.4 KB
/
find_kth_bit_in_Nth_Binary_string.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
"""
Given two positive integers n and k, the binary string Sn is formed as follows:
S1 = "0"
Si = Si - 1 + "1" + reverse(invert(Si - 1)) for i > 1
Where + denotes the concatenation operation, reverse(x) returns the reversed string x, and invert(x) inverts all the bits in x (0 changes to 1 and 1 changes to 0).
For example, the first four strings in the above sequence are:
S1 = "0"
S2 = "011"
S3 = "0111001"
S4 = "011100110110001"
Return the kth bit in Sn. It is guaranteed that k is valid for the given n.
Example 1:
Input: n = 3, k = 1
Output: "0"
Explanation: S3 is "0111001".
The 1st bit is "0".
Example 2:
Input: n = 4, k = 11
Output: "1"
Explanation: S4 is "011100110110001".
The 11th bit is "1".
Constraints:
1 <= n <= 20
1 <= k <= 2n - 1
"""
class Solution:
def findKthBit(self, n: int, k: int) -> str:
if k == 1 or n == 1:
# The first bit of any sequence is '0' or the sequence of n=1 is '0'
return '0'
# Define the invert_bit function outside of the findKthBit method
def invert_bit(bit: str) -> str:
# Inverts the bit '0' to '1' or '1' to '0'
return '1' if bit == '0' else '0'
def get_str(n):
s = '0'
for i in range(2, n + 1):
s = s + '1' + ''.join(invert_bit(b) for b in reversed(s))
return s
s = get_str(n)
return s[k - 1]