Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Project Euler 62 Solution #3029

Merged
merged 11 commits into from
Oct 15, 2020
Prev Previous commit
Next Next commit
Add missing return type for solution()
  • Loading branch information
peteryao7 committed Oct 8, 2020
commit a4e322c14d13752393a119a6d2ca2650a16103ae
2 changes: 1 addition & 1 deletion project_euler/problem_62/sol1.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from collections import defaultdict


def solution():
def solution() -> int:
dhruvmanila marked this conversation as resolved.
Show resolved Hide resolved

"""
Iterate through every possible cube and sort the cube's digits in
Expand Down