You must remove the kk smallest elements from a list of length n.n. Strategy (1)(1) sorts the list in ascending order, which takes time n2,n^2, then removes the first kk elements. Strategy (2)(2) repeatedly finds the smallest element by scanning the list and removing it until kk elements are removed. The time taken to compare two elements is 11 and the time taken to remove an element is 1.1. All other operations take zero time. Prove that strategy (2)(2) is faster.