aboutsummaryrefslogtreecommitdiffstats
path: root/sumexp.py
diff options
context:
space:
mode:
authormjfernez <mjfernez@gmail.com>2020-02-09 15:16:26 -0500
committermjfernez <mjfernez@gmail.com>2020-02-09 15:16:26 -0500
commit93ea7fe5957b62f18e8fbd17a21696bd7de6332d (patch)
treed90aed60d687bcf195f1150777f37cbe8a149814 /sumexp.py
parent125ec5bc3d8bfc224b7d32bcfbbc37b9fb5d441f (diff)
downloadProject_Euler_Solutions-93ea7fe5957b62f18e8fbd17a21696bd7de6332d.tar.gz
Organized everything, update README
Diffstat (limited to 'sumexp.py')
-rw-r--r--sumexp.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/sumexp.py b/sumexp.py
deleted file mode 100644
index a4d8eaf..0000000
--- a/sumexp.py
+++ /dev/null
@@ -1,9 +0,0 @@
-# Problem 16 Power digit sum
-n = 2**1000
-strn = str(n)
-s = 0
-
-for i in strn:
- s += int(i)
-
-print(s)