Return the indices that would sort a list of integers, with ties broken by original order.
Constraints
Example
>>> argsort_indices([3, 1, 2]) [1, 2, 0] >>> argsort_indices([5, 5, 5]) [0, 1, 2] >>> argsort_indices([]) []
Recent Submissions
No submissions yet — hit Run Tests to try!
Hints