From e26ce350bd79f999e4d1982b718720aeb662763d Mon Sep 17 00:00:00 2001 From: cclauss Date: Sat, 8 Jun 2019 10:13:09 +0200 Subject: [PATCH] Remove the Python Syntax Error that is causing our build to fail As discussed at https://github.com/TheAlgorithms/Python/pull/425#issuecomment-497402836 this file contains syntax, logic, style, and naming errors that are causing our LGTM build process to fail. @StephenGemin, @shuklalok, @vikaskyadav, @poyea, @mrWiecek your reviews please. --- Project Euler/Problem 01/sol5.py | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 Project Euler/Problem 01/sol5.py diff --git a/Project Euler/Problem 01/sol5.py b/Project Euler/Problem 01/sol5.py deleted file mode 100644 index 2cb67d2524e2..000000000000 --- a/Project Euler/Problem 01/sol5.py +++ /dev/null @@ -1,8 +0,0 @@ -a=3 -result=0 -while a=<1000: - if(a%3==0 and a%5==0): - result+=a - elif(a%15==0): - result-=a -print(result)