chance-nelson / allalgorithms-python

The All ▲lgorithms Python Library.

Home Page:https://python.allalgorithms.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool





The All ▲lgorithms Python library

Coverage Status



python.allalgorithms.com

Why?

  • Why not 😂
  • Clean and focused
  • Actively maintained
  • Because All Algorithms should be easy to use in Python

Read the detailed documentation at python.allalgorithms.com or see the docs directory on Github. See Tree.

Want to contribute? GET STARTED HERE

Install

pip install allalgorithms

Usage Example

from allalgorithms.searches import binary_search

arr = [-2, 1, 2, 7, 10, 77]

print(binary_search(arr, 7))
# -> 3

print(binary_search(arr, 3))
# -> None

Tree

Related

Maintainers

Carlos Abraham Logo
Carlos Abraham

License

MIT License © Carlos Abraham

About

The All ▲lgorithms Python Library.

https://python.allalgorithms.com/

License:MIT License


Languages

Language:Python 100.0%