I have nested loops e.g.
arr = [[2,5,4,6],[7,3,1,8],[3,9,1,1],[2,4,3,2]]
Is there a way to sort them independently? To receive something like:
arr = [[2,4,5,6],[1,3,7,8],[1,1,3,9],[2,2,3,4]]
I would like also to know if any of the sorted inner arrays occur the most often.