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