Python
Python copied to clipboard
All Algorithms implemented in Python
### Describe your change: * [x] Add an algorithm? * [ ] Fix a bug or typo in an existing algorithm? * [x] Add or change doctests? -- Note: Please...
### Describe your change: #9943 * [ ] Add an algorithm? * [ ] Fix a bug or typo in an existing algorithm? * [X] Add or change doctests? --...
### Describe your change: This implementation provides a method to compute the coefficients of Legendre polynomials of degree n. Legendre polynomials are a sequence of orthogonal polynomials widely used in...
### Describe your change: * [x] Add an algorithm? * [ ] Fix a bug or typo in an existing algorithm? * [x] Add or change doctests? -- Note: Please...
### Describe your change: Contributes to #9943 * [ ] Add an algorithm? * [ ] Fix a bug or typo in an existing algorithm? * [x] Add or change...
### Describe your change: * [ ] Add an algorithm? * [x] Fix a bug or typo in an existing algorithm? * [ ] Add or change doctests? -- Note:...
### Describe your change: * [ ] Add an algorithm? * [x] Fix a bug or typo in an existing algorithm? * [ ] Add or change doctests? -- Note:...
### Describe your change: This pull request fixes a bug in the existing split.py algorithm. The original implementation did not correctly handle strings that end with the separator, resulting in...
### Repository commit 3b1b70bf0e60dddb14917dd7cad34a41d429df01 ### Python version (python --version) Python 3.10 ### Dependencies version (pip freeze) n/a ### Expected behavior s = ["", "", ""] join(",", s) == ",".join(s) #...
### Describe your change: Added the implemenation of Lanczos algorithm. The Lanczos algorithm is an iterative method used to compute the eigenvalues and eigenvectors of large, sparse symmetric matrices. It...