Python
Python copied to clipboard
All Algorithms implemented in Python
### Describe your change: Fixed grammatical errors in TheAlgorithms/Python/blockchain/README.md * [ ] Add an algorithm? * [ ] Fix a bug or typo in an existing algorithm? * [x] Documentation...
### Describe your change: * [ ] Add an algorithm? * [ ] Fix a bug or typo in an existing algorithm? * [ ] Add or change doctests? --...
### Describe your change: Contributing to https://github.com/TheAlgorithms/Python/issues/9943 * [ ] Add an algorithm? * [ ] Fix a bug or typo in an existing algorithm? * [x] Add or change...
### Describe your change: Added the Bubble Sort algorithm in Python inside the `sorts` directory. This implementation sorts a list of numbers in ascending order and includes doctests for verification....
Add Telugu language documentation (README_te.md) This PR adds Telugu language translation of the main README file to make the project more accessible to Telugu-speaking developers and learners. Changes: - Added...
### Feature description in your bezier_curve.py in graphs you can add a feature like Currently, your BezierCurve class can evaluate the curve at any t, but it cannot compute the...
### Describe your change: Improved the README.md file by removing hardcoded height attributes from badge images and cleaning up formatting for better responsiveness and readability. **Changes made:** - Removed `height="20"`...
The sigmoid function is a logistic function, which describes growth as being initially exponential, but then slowing down and barely growing at all when a limit is reached. It's commonly...
### Repository commit 3929955ab0649cddff28864bfa5ed8f506b48847 ### Python version (python --version) Python 3.12.3 ### Dependencies version (pip freeze) attrs==23.2.0 Babel==2.10.3 bcc==0.29.1 blinker==1.7.0 Brlapi==0.8.5 certifi==2023.11.17 cfgv==3.4.0 chardet==5.2.0 click==8.1.6 cloud-init==25.1.4 colorama==0.4.6 command-not-found==0.3 configobj==5.0.8 cryptography==41.0.7...
### Describe your change: * [ ] Add an algorithm? Added a `derivative(t)` method to the `BezierCurve` class to compute the tangent vector at any point `t` on the curve....