Skip to content

brndnmtthws/cracking-the-coding-interview-rust

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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