https://github.com/dgapitts/python-code-challenges
notes and personal solutions to python-code-challenges linkedin learning course
https://github.com/dgapitts/python-code-challenges
Last synced: 3 months ago
JSON representation
notes and personal solutions to python-code-challenges linkedin learning course
- Host: GitHub
- URL: https://github.com/dgapitts/python-code-challenges
- Owner: dgapitts
- Created: 2022-08-03T23:23:08.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-08-31T20:21:11.000Z (almost 4 years ago)
- Last Synced: 2025-02-26T09:46:45.264Z (over 1 year ago)
- Size: 91.8 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## python-code-challenges
### Background
Following [python-code-challenges](https://www.linkedin.com/learning/python-code-challenges) linkedin learning.
This repo contains notes and my personal solutions to the course
### Solutions
* [Prime Factors - First Draft Solution - brutal, inelegant but works](docs/prime-factors-test.md)
* [is_palidrome - base functionality](docs/is_palidrome-base-functionality.md)
* [sorting array input - sort case-insensitive but preserve-case in final output](docs/sort-case-insensitive-preserve-case.md)
* [is_palidrome - v2 "with slice" - signficantly more efficient](docs/is_palidrome_v2_with_slice.md)