:type nums: List[int]
(self, nums)
| 39 | class Solution(object): |
| 40 | |
| 41 | def __init__(self, nums): |
| 42 | """ |
| 43 | :type nums: List[int] |
| 44 | """ |
| 45 | self.nums = nums |
| 46 | |
| 47 | def reset(self): |
| 48 | """ |
nothing calls this directly
no outgoing calls
no test coverage detected