https://github.com/dtrifuno/epi-rust
rust solutions to "Elements of Programming Interviews in Java"
https://github.com/dtrifuno/epi-rust
Last synced: 3 months ago
JSON representation
rust solutions to "Elements of Programming Interviews in Java"
- Host: GitHub
- URL: https://github.com/dtrifuno/epi-rust
- Owner: dtrifuno
- License: mit
- Created: 2021-06-06T05:48:26.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-05-22T05:22:15.000Z (about 3 years ago)
- Last Synced: 2025-01-17T01:08:29.564Z (5 months ago)
- Language: Rust
- Size: 8.79 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Rust Solutions to _Elements of Programming Interviews in Java_
These are my solutions in Rust for the exercises in the book [Elements of Programming Interviews in Java: The Insiders' Guide](http://elementsofprogramminginterviews.com/)
by _Adnan Aziz_, _Tsung-Hsien Lee_ and _Amit Prakash_.All solutions are tested using parameterized testing with the [rstest](https://crates.io/crates/rstest/0.2.2) crate.
## Usage
To download the package and execute all tests, run
```
git clone https://github.com/dtrifuno/epi-rust.git
cd epi-rust
cargo test
```or, `cargo test $NAME` to run only those tests that have `$NAME` as part of their fully qualified name.
## License
[MIT](https://choosealicense.com/licenses/mit/)