aboutsummaryrefslogtreecommitdiff
path: root/challenge-210/eric-cheung/python/ch-1.py
blob: 53345fd3d41ca7767fc27d2d2fa554439e111825 (plain)
1
2
3
4
5
6
7
## arrList = [2, 3, 1]  ## Example 1
arrList = [1, 1, 2, 2, 2, 3]  ## Example 2

nTotalPoints = sum(arrList)

print (nTotalPoints)