Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/chaharnishant11/CodeIn10DSA
/ sortArray
Method
sortArray
Sorting/Code/mergeSort.cpp:57–60 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
55
}
56
57
vector<int> sortArray(vector<int>& nums) {
58
int n=nums.size();
59
return mergeSort(nums,0,n-1);
60
}
61
};
Callers
nothing calls this directly
Calls
no outgoing calls
Tested by
no test coverage detected