I'm currently building a program and am wondering how to sort a alphanumerical list like the one below, based on smallest to biggest number.
array1 = ["14f","9c","2d","7a"]
I would just like the numbers to sort like this ["2d","7a","9c","14f"]
Any help is appreciated.