An open API service indexing awesome lists of open source software.

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

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)