Python | What is the time complexity of this built in function?
sorted(arr, key = abs)

Is this still O(NlogN) ? Although there is a special sorting requirement.

Comments (0)