Write the pseudo code for this if possible.
Determine the median selling price of all homes in a subdivision named Botany Bay sold during one year. Allow the user to enter the number of houses sold and store their selling prices in an array. The median of a list of N numbers is as follows:
a. The middle number of the sorted list, if N is odd
b. The average of the two middle numbers in the sorted list, if N is even
(Hint: after inputting the prices into an array, sort that array.)