Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mitinpavel/ctci_rust
Rust solutions for Cracking the Coding Interview book
https://github.com/mitinpavel/ctci_rust
algorithm big-o ctci interview-questions rust
Last synced: 7 days ago
JSON representation
Rust solutions for Cracking the Coding Interview book
- Host: GitHub
- URL: https://github.com/mitinpavel/ctci_rust
- Owner: MitinPavel
- License: mit
- Created: 2017-06-15T16:06:23.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-06-15T16:06:43.000Z (over 7 years ago)
- Last Synced: 2024-12-30T21:55:35.352Z (24 days ago)
- Topics: algorithm, big-o, ctci, interview-questions, rust
- Language: Rust
- Size: 20.5 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Cracking the Coding Interview in Rust
[Rust](https://www.rust-lang.org/en-US/) solutions for "Cracking the Coding Interview" (6th edition).
Implemented chapters:
* 01 Arrays and StingsDisclaimer: this repository does not contain an idiomatic Rust code. Assuming coding interview goals:
* it often doesn't use standard library functions and third party traits
* it prefers more imperative code style
* it prefers mutability## Tags
Rust, CtCI, algorithm, big O notation
## Rust version
`rustc 1.19.0-nightly`
The only reason to have Nightly is to have an ability to benchmark solutions.