This might be trivial, but I don\'t understand why the default implementation of Selection Sort is not stable?
At each iteration you find the minimum element in the rema
Stable means does not calculate further if elements is already sorted, but it calculate till end hence it is not stable.