| 1 | |
| 2 | class Solution: |
| 3 | def sortArray(self, N: List[int]) -> List[int]: |
| 4 | L = len(N) |
| 5 | for i in range(1,L): |
| 6 | for j in range(0,i): |
| 7 | if N[i] < N[j]: |
| 8 | N.insert(j, N.pop(i)) |
| 9 | break |
| 10 | return N |
nothing calls this directly
no outgoing calls
no test coverage detected