I have a set of lists embedded within a list
Id like to sort the first list alphabetically and for the other lists to then be arranged in the same order.
Current:
[['Doug','Jane','Bob'],[30,20,50],[80,100,50]]
Desired output: Output
[['Bob','Doug','Jane'],[50,30,20],[50,80,100]]