Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/w-hat/ctci-solutions
Python solutions to Cracking the Coding Interview (6th edition)
https://github.com/w-hat/ctci-solutions
Last synced: 15 days ago
JSON representation
Python solutions to Cracking the Coding Interview (6th edition)
- Host: GitHub
- URL: https://github.com/w-hat/ctci-solutions
- Owner: w-hat
- Created: 2017-03-06T03:27:11.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-04-17T15:06:04.000Z (over 2 years ago)
- Last Synced: 2024-06-01T23:37:39.600Z (5 months ago)
- Language: Python
- Size: 77.1 KB
- Stars: 681
- Watchers: 24
- Forks: 326
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CtCI Solutions
This repository will contain Python solutions to the problems in the sixth
edition of
[Cracking the Coding Interview](http://www.crackingthecodinginterview.com/)
by [Gayle Lackmann McDowell](http://www.gayle.com/).
Note that [many other solutions](https://github.com/careercup/CtCI-6th-Edition)
are available from CareerCup.Problems 4 and 8 from chapter 7 are particularly noteworthy.
Problem 4 allows you to park cars, and problem 8 provides a simple Othello bot.
You can play against the Othello bot with `python 08-othello.py play`.
Good luck!Some of these solutions may be asymptotically slower than the official
solutions. Please report any errors you find! At least one (8.11 `coins2`)
is asymptotically faster than the solution given in the book.