diff --git a/2018AAPS0756G.py b/2018AAPS0756G.py new file mode 100644 index 0000000..5030c4c --- /dev/null +++ b/2018AAPS0756G.py @@ -0,0 +1,5 @@ +def sumdigits(n): + return sum(int(x) for x in n if x.isdigit()) +sumdigits('2018AAPS0756G') + +