MCPcopy Create free account
hub / github.com/StudyRust/leetcode_rust / MyStack

Class MyStack

225-implement-stack-using-queues.rs:1–3  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1struct MyStack {
2 stack_box: Vec<i32>
3}
4
5impl MyStack {
6 fn new() -> Self {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected