Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/davecom/ClassicComputerScienceProblemsInPython
Source Code for the Book Classic Computer Science Problems in Python
https://github.com/davecom/ClassicComputerScienceProblemsInPython
algorithms book computer-science manning python python37
Last synced: 14 days ago
JSON representation
Source Code for the Book Classic Computer Science Problems in Python
- Host: GitHub
- URL: https://github.com/davecom/ClassicComputerScienceProblemsInPython
- Owner: davecom
- License: apache-2.0
- Created: 2018-05-29T03:38:41.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-05-12T09:48:27.000Z (6 months ago)
- Last Synced: 2024-10-15T06:20:54.560Z (29 days ago)
- Topics: algorithms, book, computer-science, manning, python, python37
- Language: Python
- Homepage: https://www.manning.com/books/classic-computer-science-problems-in-python?a_aid=oaksnow&a_bid=d326fe0b
- Size: 105 KB
- Stars: 1,027
- Watchers: 43
- Forks: 396
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Classic Computer Science Problems in Python
This repository contains source code to accompany the book *Classic Computer Science Problems in Python* by David Kopec. You will find the source organized by chapter. **As you read the book, each code listing contains a file name that corresponds to a file in this repository.**![Classic Computer Science Problems in Python Cover](cover.jpg)
## Get the Book
- [Manning](https://www.manning.com/books/classic-computer-science-problems-in-python?a_aid=oaksnow&a_bid=d326fe0b) the publisher sells both hard copy and DRM-free eBook editions
- [Amazon](https://amzn.to/2ui96Op) if you buy the hard copy from Amazon, it will come with a way to download the eBook for free from the publisher## Versioning and Packages
The source code in this repository requires Python 3.7 and installation of the [typing_extensions](https://github.com/python/typing/tree/master/typing_extensions) package. Due to its extensive use of Python 3.7 features (data classes, advanced type hints, etc.), most of the source code will not work with earlier versions of Python. You can install the `typing_extensions` package with `pip3 install typing_extensions` or `pip install typing_extensions` depending on your Python/pip setup.## Questions about the Book
You can find general questions and descriptive information about the book on the [Classic Computer Science Problems](https://classicproblems.com/) website. Also, feel free to reach out to me on Twitter, [@davekopec](https://twitter.com/davekopec). If you think you found an error in the source code, please open an issue up here on GitHub.## Free Content Based on the Book
- [Article: Constraint-Satisfaction Problems in Python](https://freecontent.manning.com/constraint-satisfaction-problems-in-python/)## License
All of the source code in this repository is released under the Apache License version 2.0. See `LICENSE`.## Other Books and Languages
Official Books from the Series by @davecom
- [Classic Computer Science Problems in Java](https://github.com/davecom/ClassicComputerScienceProblemsInJava)
- [Classic Computer Science Problems in Swift](https://github.com/davecom/ClassicComputerScienceProblemsInSwift)Ports
- [C++ implementation by @aray-andres](https://github.com/araya-andres/classic_computer_sci)
- [Go implementation by @arlima](https://github.com/arlima/problemas_classicos_CC)
- [PHP implementation by @SaschaKersken (German translator of CCSPiP)](https://github.com/SaschaKersken/ClassicComputerScienceProblemsInPhp)
- [JavaScript implementation by @SaschaKersken (German translator of CCSPiP)](https://github.com/SaschaKersken/ClassicComputerScienceProblemsInJavaScript)
- [Ruby implementation by @tj84](https://github.com/tj84/cs_problems)
- [Rust implementation by @marpetercontribs](https://github.com/marpetercontribs/classic-computer-science-problems-in-rust)