Skip to content
Prev Previous commit
Next Next commit
Remove whitespace from defining min_numerator
  • Loading branch information
peteryao7 committed Oct 16, 2020
commit 4c4d3d2228cb0a69d27d8d3d4042689120751206
2 changes: 1 addition & 1 deletion project_euler/problem_070/sol1.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def solution(max: int = 10000000) -> int:
4435
"""

min_numerator = 1 # i
min_numerator = 1 # i
min_denominator = 0 # φ(i)
totients = get_totients(max + 1)

Expand Down