diff options
author | mjfernez <mjfernez@gmail.com> | 2020-02-03 19:49:58 -0500 |
---|---|---|
committer | mjfernez <mjfernez@gmail.com> | 2020-02-03 19:49:58 -0500 |
commit | e6a7399134b3dc08f9e6e9c9c74e39ac449b8538 (patch) | |
tree | 2cd7b6ba1a10562d219028aa84aedfc49d872761 /smallmult.py | |
parent | d62ba829dc3a54edc46b7deb581dd244713393f5 (diff) | |
download | Project_Euler_Solutions-e6a7399134b3dc08f9e6e9c9c74e39ac449b8538.tar.gz |
Fix dumb mistakes
Diffstat (limited to 'smallmult.py')
-rw-r--r-- | smallmult.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/smallmult.py b/smallmult.py index 88c3dcc..d672ef0 100644 --- a/smallmult.py +++ b/smallmult.py @@ -5,7 +5,6 @@ #by all of the numbers from 1 to 20? import PIL, math -import numpy as np def isDivisible(num, divisors): divisible = True @@ -23,5 +22,5 @@ while (not found): start+=20 found = isDivisible(start,divs) -print start -print str(isDivisible(start, divs)) +print(start) +print(str(isDivisible(start, divs))) |