1238. Circular Permutation in Binary Representation
https://leetcode.com/problems/circular-permutation-in-binary-representation
Description
Given 2 integers n
and start
. Your task is return any permutation p
of (0,1,2.....,2^n -1)
such that :
p[0] = start
p[i]
andp[i+1]
differ by only one bit in their binary representation.p[0]
andp[2^n -1]
must also differ by only one bit in their binary representation.
Example 1:
Example 2:
Constraints:
1 <= n <= 16
0 <= start < 2 ^ n
ac
Previous1237. Find Positive Integer Solution for a Given EquationNext1239. Maximum Length of a Concatenated String with Unique Characters
Last updated