Create a function that takes a list of lists and return the length of the missing list.
find_missing([[1], [1, 2], [4, 5, 1, 1], [5, 6, 7, 8, 9]]) ➞ 3
find_missing([[5, 6, 7, 8, 9], [1, 2], [4, 5, 1, 1], [1]]) ➞ 3
find_missing([[4, 4, 4, 4], [1], [3, 3, 3]]) ➞ 2
None or empty, your function should return False.None or empty, return False.