Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

README.md

Summation

Goal: Use Python to implement Summation

Overview

Given an integer, create a function which returns the sum of all individual digits in that integer.

Ex. if n=4321, return 4+3+2+1

See Also