coolblaze03's picture
Upload folder using huggingface_hub
1514a0b verified
Raw
History Blame Contribute Delete
81 Bytes
def cummulative_sum(test_list):
res = sum(map(sum, test_list))
return res