defsubsetsWithDup(self, nums: List[int]) -> List[List[int]]: ifnot nums: return [] nums.sort() res = [[]] self.dfs(nums, 0, [], res) return res
defdfs(self, nums, st, path, res): if st == len(nums): return for i inrange(st, len(nums)): if i > st and nums[i] == nums[i - 1]: continue path.append(nums[i]) res.append(list(path)) self.dfs(nums, i + 1, path, res) path.pop()
You are playing a game with integers. You start with the integer 1 and you want to reach the integer target.
In one move, you can either:
Increment the current integer by one (i.e., x = x + 1).
Double the current integer (i.e., x = 2 * x).
You can use the increment operation any number of times, however, you can only use the double operation at mostmaxDoubles times.
Given the two integers target and maxDoubles, return the minimum number of moves needed to reachtargetstarting with1.
Example 1:
Input: target = 5, maxDoubles = 0 Output: 4 Explanation: Keep incrementing by 1 until you reach target.
Example 2:
Input: target = 19, maxDoubles = 2 Output: 7 Explanation: Initially, x = 1 Increment 3 times so x = 4 Double once so x = 8 Increment once so x = 9 Double again so x = 18 Increment once so x = 19
Example 3:
Input: target = 10, maxDoubles = 4 Output: 4 Explanation:Initially, x = 1 Increment once so x = 2 Double once so x = 4 Increment once so x = 5 Double again so x = 10
Implement the myAtoi(string s) function, which converts a string to a 32-bit signed integer (similar to C/C++’s atoi function).
The algorithm for myAtoi(string s) is as follows:
1. Read in and ignore any leading whitespace. 2. Check if the next character (if not already at the end of the string) is '-' or '+'. Read this character in if it is either. This determines if the final result is negative or positive respectively. Assume the result is positive if neither is present. 3. Read in next the characters until the next non-digit character or the end of the input is reached. The rest of the string is ignored. 4. Convert these digits into an integer (i.e. "123" -> 123, "0032" -> 32). If no digits were read, then the integer is 0. Change the sign as necessary (from step 2). 5. If the integer is out of the 32-bit signed integer range [-2<sup>31</sup>, 2<sup>31</sup> - 1], then clamp the integer so that it remains in the range. Specifically, integers less than -2<sup>31</sup> should be clamped to -2<sup>31</sup>, and integers greater than 2<sup>31</sup> - 1 should be clamped to 2<sup>31</sup> - 1. 6. Return the integer as the final result.
Note:
Only the space character ' ' is considered a whitespace character.
Do not ignore any characters other than the leading whitespace or the rest of the string after the digits.
Example 1:
Input: s = “42” Output: 42 Explanation: The underlined characters are what is read in, the caret is the current reader position. Step 1: “42” (no characters read because there is no leading whitespace) ^ Step 2: “42” (no characters read because there is neither a ‘-‘ nor ‘+’) ^ Step 3: “42“ (“42” is read in) ^ The parsed integer is 42. Since 42 is in the range [-231, 231 - 1], the final result is 42.
Example 2:
Input: s = “ -42” Output: -42 Explanation: Step 1: “-42” (leading whitespace is read and ignored) ^ Step 2: “ -42” (‘-‘ is read, so the result should be negative) ^ Step 3: “ -42“ (“42” is read in) ^ The parsed integer is -42. Since -42 is in the range [-231, 231 - 1], the final result is -42.
Example 3:
Input: s = “4193 with words” Output: 4193 Explanation: Step 1: “4193 with words” (no characters read because there is no leading whitespace) ^ Step 2: “4193 with words” (no characters read because there is neither a ‘-‘ nor ‘+’) ^ Step 3: “4193 with words” (“4193” is read in; reading stops because the next character is a non-digit) ^ The parsed integer is 4193. Since 4193 is in the range [-231, 231 - 1], the final result is 4193.
Constraints:
0 <= s.length <= 200s consists of English letters (lower-case and upper-case), digits (0-9), ' ', '+', '-', and '.'.
defmyAtoi(self, s: str) -> int: s = s.strip() ifnot s: return0 sign = 1 if s[0] == '-': sign = -1 s = s[1:] elif s[0] == '+': s = s[1:] if s andnot s[0].isdigit(): return0 res = 0 for char in s: if char.isdigit(): res = res * 10 + ord(char) - ord('0') else: break res *= sign if res < -pow(2, 31): return -pow(2, 31) if res > pow(2, 31) - 1: returnpow(2, 31) - 1 return res
deffind_kth_smallest2(self, nums1, nums2, k): i, j = 0, 0 while i < len(nums1) and j < len(nums2) and k > 0: if nums1[i] <= nums2[j]: i += 1 else: j += 1 k -= 1 if i == len(nums1): # remember dont use (not nums1) return nums2[j + k] # remember use j+k rather than k if j == len(nums2): return nums1[i + k] returnmin(nums1[i], nums2[j])
deffind_kth_smallest3(self, nums1, nums2, i, j, k): if i >= len(nums1): # remember to use >= rather than == return nums2[j + k] if j == len(nums2): return nums1[i + k] if k == 0: returnmin(nums1[i], nums2[j]) num1 = nums1[i + k // 2] if i + k // 2 < len(nums1) elsefloat('inf') # remember sys.maxsize not minus num2 = nums2[j + k // 2] if j + k // 2 < len(nums2) elsefloat('inf') if num1 <= num2: # remember the steps are same by moving i and k, k + 1 returnself.find_kth_smallest3(nums1, nums2, i + (k + 1) // 2, j, k - (k + 1) // 2) else: returnself.find_kth_smallest3(nums1, nums2, i, j + (k + 1) // 2, k - (k + 1) // 2)