本來想用quick sort, 結果是TLE猜想可能遇到worst case O(n^2)
Counting sort很直觀
統計每個數字的出現次數,在根據小到大跟出現次數 印出來因為數字被限制在100, 但有很多input
time complexity 會穩定在 O(n+k)