update code viewer timsort (#36518)

added markdown identifier code
This commit is contained in:
Cleo Aguiar
2019-07-27 22:44:54 -03:00
committed by Jonathan Graham
parent 14260bb4b3
commit 80365163de

View File

@ -10,7 +10,7 @@ The smaller part are sorted using Insertion Sort and is later merged together us
A quick implementation in Python:
```
```py
def binary_search(the_array, item, start, end):
if start == end:
if the_array[start] > item: