Rust
Rust copied to clipboard
feat: Implement Circular Deque
Changes
- [x] New feature (non-breaking change which adds circular deque implementation)
Checklist:
- [x] I ran bellow commands using the latest version of rust nightly.
- [x] I ran
cargo clippy --all -- -D warnings
just before my last commit and fixed any issue that was found. - [x] I ran
cargo fmt
just before my last commit. - [x] I ran
cargo test
just before my last commit and all tests passed. - [x] I added my algorithm to the corresponding
mod.rs
file within its own folder, and in any parent folder(s). - [x] I added my algorithm to
DIRECTORY.md
with the correct link. - [x] I checked
COUNTRIBUTING.md
and my code follows its guidelines.