Remove print used for debugging

This commit is contained in:
David Doblas Jiménez 2021-10-06 17:53:25 +02:00
parent 29fd86ae37
commit a4da51003a

View File

@ -28,7 +28,6 @@ def compute():
"""
digits = list(range(10))
_permutations = list(permutations(digits))
print(_permutations[0])
return "".join(str(digit) for digit in _permutations[999999])