(self, N: List[int])
| 1 | class Solution: |
| 2 | def sortArray(self, N: List[int]) -> List[int]: |
| 3 | C, m, M, S = collections.Counter(N), min(N), max(N), [] |
| 4 | for n in range(m,M+1): S.extend([n]*C[n]) |
| 5 | return S |
| 6 |
nothing calls this directly
no outgoing calls
no test coverage detected