diff options
author | mjf <mjf@localhost.localdomain> | 2020-02-04 12:11:30 -0500 |
---|---|---|
committer | mjf <mjf@localhost.localdomain> | 2020-02-04 12:11:30 -0500 |
commit | 6aa02212cd6dfbb492fa1f70b60a4fe3d48892e5 (patch) | |
tree | 1b655714c9709ee8fce333fcb6a6be3f5533b2d3 /sumexp.py.orig | |
parent | 8e431d287c0e89041506da4c4da57e3e3d657d72 (diff) | |
download | Project_Euler_Solutions-6aa02212cd6dfbb492fa1f70b60a4fe3d48892e5.tar.gz |
cleanup and added more c examples:
Diffstat (limited to 'sumexp.py.orig')
-rw-r--r-- | sumexp.py.orig | 10 |
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) |