Generating list of lists with custom value limitations with Hypothesis
问题 The Story: Currently, I have a function-under-test that expects a list of lists of integers with the following rules: number of sublists (let's call it N ) can be from 1 to 50 number of values inside sublists is the same for all sublists (rectangular form) and should be >= 0 and <= 5 values inside sublists cannot be more than or equal to the total number of sublists. In other words, each value inside a sublist is an integer >= 0 and < N Sample valid inputs: [[0]] [[2, 1], [2, 0], [3, 1], [1,