An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

Rust CTCI
===

[![Build Status](https://travis-ci.org/ranveeraggarwal/rust-ctci.svg?branch=master)](https://travis-ci.org/ranveeraggarwal/rust-ctci)
[![codecov](https://codecov.io/gh/ranveeraggarwal/rust-ctci/branch/master/graph/badge.svg)](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/).