https://github.com/jsonfm/algorithms-analysis-and-design
💙 O(n) analysis and design of algorithms.
https://github.com/jsonfm/algorithms-analysis-and-design
algorithms bigonotation python
Last synced: about 1 year ago
JSON representation
💙 O(n) analysis and design of algorithms.
- Host: GitHub
- URL: https://github.com/jsonfm/algorithms-analysis-and-design
- Owner: jsonfm
- Created: 2023-10-21T22:54:13.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-10-25T13:55:21.000Z (over 2 years ago)
- Last Synced: 2025-01-30T12:30:09.470Z (over 1 year ago)
- Topics: algorithms, bigonotation, python
- Language: Python
- Homepage: https://www.coursera.org/learn/algorithms-divide-conquer
- Size: 123 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Algoriths Design
course.
### Grade School Multiplication
```python
from algorithms.operations import grade_school_multiplication
result = grade_school_multiplication(5678, 1234)
print(result)
```

### Merge Sort
```python
from algorithms.sort import merge_sort
array = [12, 10, 13, 5, 6, 7, 2]
sorted_ = merge_sort(array)
print("input: ", array)
print("output: ", sorted_)
```
