cracking-the-coding-interview-rust icon indicating copy to clipboard operation
cracking-the-coding-interview-rust copied to clipboard

Cracking the Coding Interview problem solutions in Rust

Build Status Dependabot Status Coverage Status

Cracking the Coding Interview with Rust

This repository contains code for my YouTube programming interview practice & learning series about Rust. The problems are based on the book "Cracking the Coding Interview" by Gayle Laakmann McDowell. You can find the existing solutions here.

To follow along, you can:

You can find the existing videos on YouTube below:

Prerequisites

To run the code, you'll need an up-to-date version of Rust. The recommended way of installing Rust is using a tool called rustup:

$ curl https://sh.rustup.rs -sSf | sh
...

Once you have Rust installed, you can build and run the tests.

Running the Code

$ cargo build
$ cargo test
...