https://github.com/dgapitts/classic-problems-python
notes from classic-computer-science-problems-in-python online course
https://github.com/dgapitts/classic-problems-python
Last synced: 8 months ago
JSON representation
notes from classic-computer-science-problems-in-python online course
- Host: GitHub
- URL: https://github.com/dgapitts/classic-problems-python
- Owner: dgapitts
- Created: 2020-12-26T18:02:54.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2020-12-29T22:36:46.000Z (over 5 years ago)
- Last Synced: 2025-01-09T01:00:00.979Z (over 1 year ago)
- Language: Python
- Size: 13.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Summary
My exercises and run time details while working through classic-computer-science-problems-in-python.
Most of code here is from the textbook examples, although I have
explored a few simple variations. I've also added a README.md to each subfolder with some execution notes and personal interpretation of the example .
The code here is also using a python3.9 feature "Type Hinting Generics In Standard Collections".
The default python3 version for Ubuntu16.04 is 3.5
```
[~/projects/classic-problems-python/chap1-small-problems/Compression] # lsb_release -d
Description: Ubuntu 16.04.6 LTS
[~/projects/classic-problems-python/chap1-small-problems/Compression] # python3 --version
Python 3.5.2
```
so to avoid you'll need to upgrade to 3.9
```
[~/projects/classic-problems-python/chap1-small-problems/Compression] # python3.9 --version
Python 3.9.1
```
Ref: http://ubuntuhandbook.org/index.php/2020/10/python-3-9-0-released-install-ppa-ubuntu/