:type key: int :rtype: int
(self, key)
| 63 | self.capacity = capacity |
| 64 | |
| 65 | def get(self, key): |
| 66 | """ |
| 67 | :type key: int |
| 68 | :rtype: int |
| 69 | """ |
| 70 | return self._get(key) |
| 71 | |
| 72 | def _get(self, key): |
| 73 | # if inexistent then return -1 |
no test coverage detected