Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/HuberTRoy/leetCode
/ mergeSort
Function
mergeSort
Sorted/sotred.py:111–117 ·
view source on GitHub ↗
(shuffledList)
Source
from the content-addressed store, hash-verified
109
110
111
def
mergeSort(shuffledList):
112
113
splitedList = list(map(makeValueInList, shuffledList))
114
115
result = reduce(splitedList)
116
117
return
result
118
119
120
# 快速排序
Callers
nothing calls this directly
Calls
1
reduce
Function · 0.85
Tested by
no test coverage detected