First time here? Check out the FAQ!
answered 2020-07-04 19:02:31 +0100
As the other contributors have said, you can simply use python.
Just another version:
a=[[1,3],[4,5,6],[2,3,4,6,7],[1,3]] givememaxlen=lambda x: max([len(i) for i in x]); print(givememaxlen(a))