We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f386fce commit 50efddeCopy full SHA for 50efdde
Project Euler/Problem 01/sol5.py renamed to project_euler/problem_01/sol6.py
@@ -1,6 +1,6 @@
1
a=3
2
result=0
3
-while a=<1000:
+while a<=1000:
4
if(a%3==0 and a%5==0):
5
result+=a
6
elif(a%15==0):
0 commit comments