Please help out over here for java
So I’m doing an assignment where we need to return the number of characters in the table that has the largest number of characters. For example: Int [] [] table = {{-3, 18, -2053, 13}; {1856, 24601, 7, 92}, {23, 0, 425, -25}}; Return: 5 because -2053 has 5 characters. I’m just having trouble figuring out how to make the three tables plus for it to read the largest amount of characters. PLEASE HELP I was able to make a code which will read the largest number. public class MaxLength { static int arr[] = { 3, 18, -2053, 13}; static int largest() { int i; int max = arr[0]; for (i = 1; i < arr.length; i++) if (arr[i] > max) max = arr[i]; return max; } public static void main(String[] args) { System.out.println("Largest in given array is " + largest()); } }