index
:
clp
main
A small Python compiler with optimizer written in Java
dcariotti
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
progs
/
a13.py
blob: 30a80e283dca7a8a0af4a153db791d8ee923d77b (
plain
)
1
2
3
def
cummulative_sum
(
test_list
):
res
=
sum
(
map
(
sum
,
test_list
))
return
(
res
)