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

https://github.com/holyketzer/ctci_v6

Cracking the Coding Interview 6th edition
https://github.com/holyketzer/ctci_v6

cracking-code-interview cracking-the-coding-interview go golang ruby

Last synced: 20 days ago
JSON representation

Cracking the Coding Interview 6th edition

Awesome Lists containing this project

README

          

# Cracking the Coding Interview Solutions

Solutions for [6th edition](https://www.amazon.com/Cracking-Coding-Interview-Programming-Questions/dp/0984782850)

## Ruby

```sh
cd ruby
bundle install
rspec
```

## Go

```sh
cd go
go test ./...
```
## TODO:

* 3.3 find more clean approach
* 4.1 check diamond relation
* 4.7 review cycle detection
* 7.2 refactor with features
* 10.9 implement binary search in matrix
* 12.9 fix smart pointer