An open API service indexing awesome lists of open source software.

https://github.com/arwenterpstra/algorithms

Different algorithms for different purposes, written in multiple languages
https://github.com/arwenterpstra/algorithms

algorithms c cpp csharp java javascript lua python rust

Last synced: about 2 months ago
JSON representation

Different algorithms for different purposes, written in multiple languages

Awesome Lists containing this project

README

          

## Algorithms

| Algorithm | C | C# | C++ | Rust | Java | JavaScript | Python | Lua |
|:-----------------------------------:|:-:|:--:|:---:|:----:|:----:|:----------:|:------:|:---:|
| [Euclid](#euclid's-algorithm) |[x]|[x] | [x] | [x] | [x] | [x] | [x] | [x] |

## Descriptions
### Euclid's algorithm
Given two positive integers a and b, find their greatest common divisor, that is, the largest positive integer that evenly divides both a and b.
[Euclid's Algorithm Wikipedia](https://en.wikipedia.org/wiki/Euclidean_algorithm)