MCPcopy Index your code
hub / github.com/jwasham/practice-python / sort

Method sort

merge_sort/merge_sort.py:6–8  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

4 self.count = len(numbers)
5
6 def sort(self):
7 self.merge_sort(0, self.count - 1)
8 return self.values
9
10 def merge_sort(self, low, high):
11 if low < high:

Callers 2

mainFunction · 0.95
array_testFunction · 0.45

Calls 1

merge_sortMethod · 0.95

Tested by

no test coverage detected