class Solution: def MySort(self , arr: List[int]) -> List[int]: # write code here self.quick_Sort(arr, 0, len(arr)-1) return arr def quick_Sort(self,arr,head,tail): if head>=tail: return arr pivot=arr[head] low=head hi...