Sort an array
You are given an array of signed words starting at SORT
that contains N
words. Your task is to sort this array, overwriting the current array with one that is sorted. Once done, your code should call the break
instruction.
We suggest you implement a very simple in-place sort, such as Bubble sort, but you are welcome to implement any sorting algorithm.