Counting Sort 1

  • + 0 comments

    Create new array which size is 100 because maximum capacitiy can be 100 as written in document.

    With for loop, check the every index of given input array. For example if first element is 23, it means go to index 23 of newly created array and increase one (+1).