Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/StudyRust/leetcode_rust
/ ParkingSystem
Class
ParkingSystem
1603-design-parking-system.rs:1–4 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
1
struct ParkingSystem {
2
current: Vec<i32>,
3
max: Vec<i32>
4
}
5
6
impl ParkingSystem {
7
fn new(big: i32, medium: i32, small: i32) -> Self {
Callers
nothing calls this directly
Calls
no outgoing calls
Tested by
no test coverage detected