I have an array in Python made up of arrays. But these arrays can have different sizes. For example:
matriz = [[1,2,3],[4,5,6,7],[1,2,3,4,5,6]]
What I want to know is if there is a medium (some python-ready function) that returns the size of the largest array in that array.
For example:
x = funcao(matriz)
which would return to x the value 6 (array size at array position 3).