cracking the coding interview rust
1.0.0
该存储库包含有关我的YouTube编程访谈实践和学习系列的代码。问题基于盖尔·拉克曼·麦克道威尔(Gayle Laakmann McDowell)的《破解编码访谈》一书。您可以在此处找到现有的解决方案。
跟随,您可以:
您可以在下面的YouTube上找到现有视频:
要运行代码,您需要最新的Rust版本。建议安装Rust的方法是使用称为Rustup的工具:
$ curl https://sh.rustup.rs -sSf | sh
...安装生锈后,您可以构建并运行测试。
$ cargo build
$ cargo test
...