number
int64
1
1M
question
stringlengths
153
4.6k
1,000,334
class Solution: def singleNonDuplicate(self, nums: List[int]) -> int: """ English description is not available for the problem. Please switch to Chinese. """ # Medium
1,000,335
class Solution: def __init__(self, w: List[int]): def pickIndex(self) -> int: """ English description is not available for the problem. Please switch to Chinese. """ # Medium
1,000,336
class Solution: def mySqrt(self, x: int) -> int: """ English description is not available for the problem. Please switch to Chinese. """ # Easy
1,000,337
class Solution: def minEatingSpeed(self, piles: List[int], h: int) -> int: """ English description is not available for the problem. Please switch to Chinese. """ # Medium
1,000,338
class Solution: def merge(self, intervals: List[List[int]]) -> List[List[int]]: """ English description is not available for the problem. Please switch to Chinese. """ # Medium
1,000,339
class Solution: def relativeSortArray(self, arr1: List[int], arr2: List[int]) -> List[int]: """ English description is not available for the problem. Please switch to Chinese. """ # Easy
1,000,340
class Solution: def findKthLargest(self, nums: List[int], k: int) -> int: """ English description is not available for the problem. Please switch to Chinese. """ # Medium
1,000,341
class Solution: def sortList(self, head: ListNode) -> ListNode: """ English description is not available for the problem. Please switch to Chinese. """ # Medium
1,000,342
class Solution: def mergeKLists(self, lists: List[ListNode]) -> ListNode: """ English description is not available for the problem. Please switch to Chinese. """ # Hard
1,000,343
class Solution: def subsets(self, nums: List[int]) -> List[List[int]]: """ English description is not available for the problem. Please switch to Chinese. """ # Medium
1,000,344
class Solution: def combine(self, n: int, k: int) -> List[List[int]]: """ English description is not available for the problem. Please switch to Chinese. """ # Medium
1,000,345
class Solution: def uniquePaths(self, m: int, n: int) -> int: """ English description is not available for the problem. Please switch to Chinese. """ # Medium
1,000,346
class Solution: def findCircleNum(self, isConnected: List[List[int]]) -> int: """ English description is not available for the problem. Please switch to Chinese. """ # Medium