Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
more comments
  • Loading branch information
Takosaga committed Oct 24, 2020
commit ce92f8866c89777cadecbc304cbe5d6c771846a9
3 changes: 1 addition & 2 deletions project_euler/problem_206/sol1.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
starting from 1. The minimum number possible for perfect square is 1020304050607080900
in this situation, so started checking digits are in correct places after
total is above it.

"""

import math
Expand All @@ -19,7 +18,7 @@ def solution() -> int:
1389019170
"""


#adding odds
total = 1
add = 1

Expand Down