MCPcopy Create free account
hub / github.com/geekcomputers/Python / Linear_Insertion_Sort.py

File Linear_Insertion_Sort.py

Sorting Algorithms/Linear_Insertion_Sort.py:None–None  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1def Linear_Search(Test_arr, val):
2 index = 0
3 for i in range(len(Test_arr)):
4 if val > Test_arr[i]:

Callers

nothing calls this directly

Calls 1

Insertion_SortFunction · 0.70

Tested by

no test coverage detected