I have an array of structs that I am looking to sort from highest to lowest based on Double value stored as a String. This is the way I\'m currently doing it:
us
Use a comparator which is able to handle numeric strings
users.sort { $0.weekFTC.compare($1.weekFTC, options: .numeric) == .orderedDescending }