Example #1
0
def main(verbose=False):
    count = 2
    n = 50
    while count <= 10 ** 6:
        n += 1
        count = fill_count(50, n)
    return n
Example #2
0
def main(verbose=False):
    return fill_count(3, 50)