aboutsummaryrefslogtreecommitdiffstats
path: root/sumexp.py.orig
diff options
context:
space:
mode:
authormjf <mjf@localhost.localdomain>2020-02-04 12:11:30 -0500
committermjf <mjf@localhost.localdomain>2020-02-04 12:11:30 -0500
commit6aa02212cd6dfbb492fa1f70b60a4fe3d48892e5 (patch)
tree1b655714c9709ee8fce333fcb6a6be3f5533b2d3 /sumexp.py.orig
parent8e431d287c0e89041506da4c4da57e3e3d657d72 (diff)
downloadProject_Euler_Solutions-6aa02212cd6dfbb492fa1f70b60a4fe3d48892e5.tar.gz
cleanup and added more c examples:
Diffstat (limited to 'sumexp.py.orig')
-rw-r--r--sumexp.py.orig10
1 files changed, 0 insertions, 10 deletions
diff --git a/sumexp.py.orig b/sumexp.py.orig
deleted file mode 100644
index 90dd2da..0000000
--- a/sumexp.py.orig
+++ /dev/null
@@ -1,10 +0,0 @@
-import PIL, math
-#Problem 16 Power digit sum
-n = 2**1000
-strn = str(n)
-s = 0
-
-for i in strn:
- s += int(i)
-
-print(s)