/** * `&self` means the method takes an immutable reference. * If you need a mutable reference, change it to `&mut self` instead. */ impl MinStack { /** initialize your data structure here. */ fnnew() -> Self { return MinStack { stack_a: vec![], stack_b: vec![], }; }