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

https://github.com/omiq17/ds-algo-with-python3

Some of my python programming problems code that I solved.
https://github.com/omiq17/ds-algo-with-python3

algorithm python-3

Last synced: 19 days ago
JSON representation

Some of my python programming problems code that I solved.

Awesome Lists containing this project

README

          

## Sorting Algorithms

- [Bubble sort](https://github.com/omiq17/my-python-codes/blob/master/sorting-algorithms/bubble-sort.py)
- [Selection sort](https://github.com/omiq17/my-python-codes/blob/master/sorting-algorithms/selection-sort.py)
- [Insertion sort](https://github.com/omiq17/my-python-codes/blob/master/sorting-algorithms/insertion-sort.py)
- [Merge sort](https://github.com/omiq17/my-python-codes/blob/master/sorting-algorithms/merge-sort.py)
- [Quick sort](https://github.com/omiq17/my-python-codes/blob/master/sorting-algorithms/quick-sort.py)
- [Counting sort](https://github.com/omiq17/my-python-codes/blob/master/sorting-algorithms/counting-sort.py)
- [Radix sort](https://github.com/omiq17/my-python-codes/blob/master/sorting-algorithms/radix-sort.py)

## Searching Algorithms

- [Linear Search](https://github.com/omiq17/my-python-codes/blob/master/searching-algorithms/linear-search.py)
- [Binary Search](https://github.com/omiq17/my-python-codes/blob/master/searching-algorithms/binary-search.py)

## Graph

- [BFS](https://github.com/omiq17/my-python-codes/blob/master/graph/bfs.py)
- [DFS](https://github.com/omiq17/my-python-codes/blob/master/graph/dfs.py)

## Dynamic Programming

- [Fibonacci Numbers](https://github.com/omiq17/my-python-codes/blob/master/dynamic-programming/fibonacci.py)