Exemplo n.º 1
0
Arquivo: p115.py Projeto: doboy/euler
from utils import fill_count

n = 1
while fill_count( n, 50 ) <= 1000000:
    n += 1

print n

Exemplo n.º 2
0
Arquivo: p114.py Projeto: doboy/euler
from utils import fill_count

print fill_count( 50, 3 )