Lets say i have a list of string arrays like ["bbb", "eee", "hhh"], ["ccc", "fff", "iii"], ["aaa", "ddd", "ggg"]
How can i sort the list so that its alphabetical after the first element in each array Like: ["aaa", "ddd", "ggg"], ["bbb", "eee", "hhh"], ["ccc", "fff", "iii"] with selection sort?