7 lines
161 B
Python
7 lines
161 B
Python
|
#!/usr/bin/python3
|
||
|
from hilbertgenerator import Vector, hilbertgenerator
|
||
|
|
||
|
n = 8
|
||
|
for r in hilbertgenerator(Vector(n, n), Vector(n, 0), Vector(0,n)):
|
||
|
print(r)
|