Update 0232.用栈实现队列.md

This commit is contained in:
fw_qaq 2022-10-29 18:18:34 +08:00 committed by GitHub
parent 67a84f74c1
commit 7950be58a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -630,7 +630,6 @@ struct MyQueue {
stack_out: Vec<i32>,
}
impl MyQueue {
fn new() -> Self {
MyQueue {
stack_in: Vec::new(),