Find the number of elements in a single row

Hi @Criste44,

Consider this example:

void setup() {
  int nums[][] = {{3, 4, 7}, {1, 9, 8, 6}, {8, 1, 2}};
  System.out.println(nums[1].length);
}

Output:

4