Create a function that takes an array of arrays and return the length of the missing array.
findMissing([[1], [1, 2], [4, 5, 1, 1], [5, 6, 7, 8, 9]]) ➞ 3
findMissing([[5, 6, 7, 8, 9], [1, 2], [4, 5, 1, 1], [1]]) ➞ 3
findMissing([[4, 4, 4, 4], [1], [3, 3, 3]]) ➞ 2
null or empty, your function should return false.null or empty, return false.