Resets the array to its original configuration and return it. :rtype: List[int]
(self)
| 45 | self.nums = nums |
| 46 | |
| 47 | def reset(self): |
| 48 | """ |
| 49 | Resets the array to its original configuration and return it. |
| 50 | :rtype: List[int] |
| 51 | """ |
| 52 | return self.nums |
| 53 | |
| 54 | def shuffle(self): |
| 55 | """ |
nothing calls this directly
no outgoing calls
no test coverage detected