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: * [x] Add an algorithm? * [ ] Fix a bug or typo in an existing algorithm? * [ ] Documentation change? ### Checklist: * [x]...

stale
awaiting reviews

Face similarity detection captures the similarity face image using the Keras model.

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

awaiting reviews

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

stale
awaiting reviews
require descriptive names

The graph section of this repository does not contain some well known algorithms like Kruskal's algo, Floyd-Warshall algo etc. Add more number of examples from graphs. Please assign this issue...

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

awaiting reviews
require tests

Implementing valid parentheses string problem using python

### Describe your change: Added an algorithm to approximate b**? = x. For example: 2**? = 32 --> 2**5 = 32 --> ? = 5 * [x] Add an algorithm?...

awaiting reviews
tests are failing

Non-directed graphs are now supported by simply adding the `direction=True` argument in the constructor. Resolving bug/issue #6334. ### Describe your change: * [ ] Add an algorithm? * [x] Fix...

enhancement
awaiting reviews

As you can see in the code below: https://github.com/TheAlgorithms/Python/blob/f31fa4ea7e26d8721be7e966ecf92fcbd87af65f/graphs/breadth_first_search.py#L25-L38 this code only works for directed graphs and the BFS algorithm is wrong. For example in this minimal example: ```python g...