4/75
03.找出数组中重复的数字
03
try1: 遍历 超时
class Solution:
def findRepeatNumber(self, nums: List[int]) -> int:
for i in range(len(nums)-1):
for j in range(i+1,len(nums)): # 第一
1359 Count All Valid Pickup and Delivery Options 有效的快递序列数目
Description:
Given n orders, each order consist in pickup and delivery services.
Count all valid pickup/delivery possible sequences such that