Partition always yields subarrays of size n-1 and 1.
T(n) = T(n-1) +
Note that Insertion Sort is O(n) in this same case (already sorted).