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
- Host: GitHub
- URL: https://github.com/holyketzer/ctci_v6
- Owner: holyketzer
- License: mit
- Created: 2019-08-24T21:00:04.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2020-08-20T07:14:37.000Z (almost 6 years ago)
- Last Synced: 2025-01-28T22:35:43.804Z (over 1 year ago)
- Topics: cracking-code-interview, cracking-the-coding-interview, go, golang, ruby
- Language: Ruby
- Size: 16.5 MB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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