We have this type of array and max represents the length of the word in the columns.
var data = [
["1111", "44"],
["222", "55555" ],
["33", "666" ],
...
];
"1111".length > "222".length > "33".length,
"55555".length > "666".length > "44".length
var max -> [4,5];
Because this array is really huge, what would be the most efficient way to do this?