MCPcopy Create free account
hub / github.com/subbarayudu-j/TheAlgorithms-Python / timsort.py

File timsort.py

sorts/timsort.py:None–None  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1from __future__ import print_function
2def binary_search(lst, item, start, end):
3 if start == end:
4 if lst[start] > item:

Callers

nothing calls this directly

Calls 1

mainFunction · 0.70

Tested by

no test coverage detected