Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 622 Bytes

File metadata and controls

25 lines (17 loc) · 622 Bytes

Hacker Rank: Golang: Cracking the Coding Interview

All hackerrank: cracking the coding interview solutions that the website will let me submit in golang.

66% of the solutions done, currently working through the remainder

Running

You can go get this repo, then cd into $GOPATH/src/github.com/amay0048/ctci/{{section/solution}}, and run go test the output for each test case will be written to test/out.txt

As as example, should be able to:

cd $GOPATH/src/github.com/amay0048/ctci/01_data_structures/09_tries
go test

Setting up go on OSX

brew update && brew upgrade
brew install go