Skip to content

Commit 50efdde

Browse files
authored
Update and rename Project Euler/Problem 01/sol5.py to project_euler/problem_01/sol6.py
1 parent f386fce commit 50efdde

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Project Euler/Problem 01/sol5.py renamed to project_euler/problem_01/sol6.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
a=3
22
result=0
3-
while a=<1000:
3+
while a<=1000:
44
if(a%3==0 and a%5==0):
55
result+=a
66
elif(a%15==0):

0 commit comments

Comments
 (0)