Initialize your data structure here.
(self)
| 70 | class RandomizedSet(object): |
| 71 | |
| 72 | def __init__(self): |
| 73 | """ |
| 74 | Initialize your data structure here. |
| 75 | """ |
| 76 | self.data_dict = {} |
| 77 | self.data_list = [] |
| 78 | self.length = 0 |
| 79 | |
| 80 | def insert(self, val): |
| 81 | """ |
nothing calls this directly
no outgoing calls
no test coverage detected