Characteristics
•
Time Complexity:
•
Space Complexity:
Instructions
1.
Select the first two value from the unsorted array
2.
Compare two values until there are no more value at the second value
a.
If first value is greater than the second value, swap
b.
Else, move to the next values
3.
Repeat 1 - 2 until all the values are sorted




