Characteristics
•
Time Complexity:
•
Space Complexity:
Instructions
1.
Select the first value from the unsorted array to set current_value
2.
Select the tail value from the sorted array to set compare_value
3.
Until current_value is smaller than the compare_value, move the compare_value to the left
4.
If 3 passes, insert the value
5.
Repeat 1 - 4 until all the values are sorted




