Initialize your data structure here. */
()
| 13 | |
| 14 | /** Initialize your data structure here. */ |
| 15 | fn new() -> Self { |
| 16 | MyHashMap{map: HashMap::new()} |
| 17 | } |
| 18 | |
| 19 | /** value will always be non-negative. */ |
| 20 | fn put(&mut self, key: i32, value: i32) { |
nothing calls this directly
no outgoing calls
no test coverage detected