Skip to content
Prev Previous commit
Next Next commit
Add extra newlines between function names
  • Loading branch information
peteryao7 committed Oct 8, 2020
commit ee984f82f87c8f1c9d28f46e83d79e45865046cf
3 changes: 2 additions & 1 deletion project_euler/problem_62/sol1.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@

from collections import defaultdict


def solution():

"""
Expand Down Expand Up @@ -54,7 +55,7 @@ def get_digits(num: int) -> str:
digits = [str(x) for x in str(cube)]
digits.sort()
return "".join(digits)


if __name__ == "__main__":
print(solution())
Comment thread
dhruvmanila marked this conversation as resolved.
Outdated