Metadata-Version: 2.1
Name: binarysearchsimulation
Version: 1.0.0
Summary: Python program to visualize the behavior of upper_bound and lower_bound binary searches.
Home-page: https://github.com/searleser97/BinarySearchSimulation
License: AGPL-3.0-only
Keywords: competitive,programming,Binary,search
Author: searleser97
Author-email: serchgabriel97@gmail.com
Requires-Python: >=3.5,<4.0
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Project-URL: Repository, https://github.com/searleser97/BinarySearchSimulation
Description-Content-Type: text/markdown

# Binary Search Simulation

Python program to visualize the behavior of upper_bound and lower_bound binary searches.

<table>
  <tr>
    <th>Upper Bound</th>
    <th>Lower Bound</th>
  </tr>
  <tr>
    <td>
      <img src="https://searleser97.github.io/BinarySearchSimulation/upper_bound.png" width="250" height="400" />
    </td>
    <td>
      <img src="https://searleser97.github.io/BinarySearchSimulation/lower_bound.png" width="250" height="400" />
    </td>
  </tr>
</table>
