Sorting of arrays elements in Swift

var numbers = [ 112573 ]

//the first method
numbers.sortInPlace({ $0 < $1 })

//the second method
numbers = numbers.sort({ $0 < $1 })

//descending
numbers.sortInPlace({ $1 < $0 })