Draft

sums of inner lists

Description:

given an input (list of list) return summed inner list list, each list varing in length may have negatives and empty arrays

should output summed inner list of list list

input:

[[1, 5, 7, 1], [1, 7], [6], [], [7, 1, 8, 2, 9]]

output:

[15, 13, 15, 3, 9]

based on:

1 5 7 1
1 7    
6
0 
7 1 8 2 9
--------------
15 13 15 3 9

note:

  1. im still new making katas
  2. idk how make random tests
  3. pls report any problem

i will be grateful for your help

Arrays
Algorithms
Mathematics

Stats:

CreatedNov 24, 2024
Warriors Trained9
Total Skips0
Total Code Submissions25
Total Times Completed5
JavaScript Completions3
Python Completions4
Total Stars0
% of votes with a positive feedback rating0% of 2
Total "Very Satisfied" Votes0
Total "Somewhat Satisfied" Votes0
Total "Not Satisfied" Votes2
Total Rank Assessments2
Average Assessed Rank
7 kyu
Highest Assessed Rank
7 kyu
Lowest Assessed Rank
7 kyu
Ad
Contributors
  • firelabs-io Avatar
Ad