Python icon indicating copy to clipboard operation
Python copied to clipboard

All Algorithms implemented in Python

Results 1352 Python issues
Sort by recently updated
recently updated
newest added

### Describe your change: Implemented the Leonardo numbers sequence algorithm. * [x] Added type hinting * [x] Added doctests with positive, negative, and float cases * [x] Verified tests pass...

awaiting reviews
require descriptive names

### Describe your change: * [x] Add an algorithm? * [ ] Fix a bug or typo in an existing algorithm? * [ ] Add or change doctests? * [...

awaiting reviews
require descriptive names

This project/file contains a solution to the Merge Intervals problem, a common coding interview problem. Problem Statement: Given a collection of intervals, merge all overlapping intervals and return a list...

awaiting reviews

### Describe your change: This pull request adds a complete implementation of the Gauss–Jordan elimination algorithm for solving systems of linear equations of the form Ax= b . The function...

awaiting reviews

### Describe your change: * [x] Add an algorithm? * [ ] Fix a bug or typo in an existing algorithm? * [ ] Add or change doctests? -- Note:...

awaiting reviews

### Describe your change: **Added a file named "transpose_of_matrix" in matrix directory. ** i have described my steps in detail in code as best i can, this program computes the...

awaiting reviews
tests are failing
require tests

name = input("enter your name: ") year_of_birth = int(input("enter your year_of_birth:")) from datetime import date current_year = date.today().year age = current_year-year_of_birth print("/n hello",name) if age>=60: print("you are senior citizen") else:...

class showroom: print( "car dealer:Heartly welcome to our showroom.please take your seat \n what can i help you" ) print("customer: i want buy BMW car show me") print("car dealer:see this...

### Describe your change: * [x] Add an algorithm? * [ ] Fix a bug or typo in an existing algorithm? * [ ] Add or change doctests? -- Note:...

awaiting reviews
tests are failing