Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/StudyRust/leetcode_rust
/ MyHashMap
Class
MyHashMap
706-design-hashmap.rs:3–5 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
1
use std::collections::HashMap;
2
3
struct MyHashMap {
4
map: HashMap<i32, i32>,
5
}
6
7
8
/**
Callers
nothing calls this directly
Calls
no outgoing calls
Tested by
no test coverage detected