Skip to content

Latest commit

 

History

History
55 lines (43 loc) · 3.04 KB

File metadata and controls

55 lines (43 loc) · 3.04 KB

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
...