https://github.com/ranveeraggarwal/rust-ctci
Cracking the Coding Interview solutions in Rust
https://github.com/ranveeraggarwal/rust-ctci
cracking-the-coding-interview interview rust
Last synced: about 1 year ago
JSON representation
Cracking the Coding Interview solutions in Rust
- Host: GitHub
- URL: https://github.com/ranveeraggarwal/rust-ctci
- Owner: ranveeraggarwal
- Created: 2017-03-11T18:52:27.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-27T18:26:16.000Z (about 9 years ago)
- Last Synced: 2025-02-08T01:34:44.751Z (over 1 year ago)
- Topics: cracking-the-coding-interview, interview, rust
- Language: Rust
- Size: 26.4 KB
- Stars: 2
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Rust CTCI
===
[](https://travis-ci.org/ranveeraggarwal/rust-ctci)
[](https://codecov.io/gh/ranveeraggarwal/rust-ctci)
[Cracking the Coding Interview, 6th Edition](http://www.crackingthecodinginterview.com/) solutions in [Rust](https://www.rust-lang.org/en-US/).
## Running
The whole project is set up as a module, so it can be easily imported as an external crate. To run all tests, run
cargo test
in the project's root directory.
## Contributing
I'm currently not accepting pull requests. This is a personal exercise to learn Rust and prepare for interviews. I might accept contributions later.
## Credits
* **Linked Lists**: `./src/structures/singlies.rs` has been taken from [http://cglab.ca/~abeinges/blah/too-many-lists/book/](http://cglab.ca/~abeinges/blah/too-many-lists/book/).