Skip to content

Latest commit

 

History

History
33 lines (19 loc) · 513 Bytes

File metadata and controls

33 lines (19 loc) · 513 Bytes

Binary Search

Question

Implement and demonstrate the Binary search algorithm.

Solution

.. literalinclude:: ../../languages/python/algorithm_binary_search.py
   :language: python
   :tab-width: 4

.. runcode:: ../../languages/python/algorithm_binary_search.py
   :language: python
   :codesite: ideone

Explanation

.. seealso::

   * :python-suggest-improve:`algorithm_binary_search.py`
   * :python-better-explain:`algorithm_binary_search.rst`