Skip to content
Prev Previous commit
Next Next commit
Add to explanation and fix second Travis build
  • Loading branch information
peteryao7 committed Oct 8, 2020
commit 04a44c5321853c40b4dccfe76a4b4ed90ce2a821
2 changes: 1 addition & 1 deletion project_euler/problem_62/sol1.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def solution() -> int:
numbers that are the base of the cube.

Once you find 5 numbers that produce the same sequence of digits, return
the smallest one, which is at index 0 since we insert each base in
the smallest one, which is at index 0 since we insert each base number in
ascending order.
"""
freqs = defaultdict(list)
Expand Down