I have the following two dimensional Array:
[120 320;
150 270;
230 250]
the rows of which I want to sort with regards to the second element in each row. I could not find anyway to do that using Julia's Base.sort(). Is it is possible to achieve this using Base.sort() or are there any alternatives?