Draft
sums of inner lists
3 of 5firelabs-io
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:
- im still new making katas
- idk how make random tests
- pls report any problem
i will be grateful for your help
Arrays
Algorithms
Mathematics
Similar Kata:
Stats:
Created | Nov 24, 2024 |
Warriors Trained | 9 |
Total Skips | 0 |
Total Code Submissions | 25 |
Total Times Completed | 5 |
JavaScript Completions | 3 |
Python Completions | 4 |
Total Stars | 0 |
% of votes with a positive feedback rating | 0% of 2 |
Total "Very Satisfied" Votes | 0 |
Total "Somewhat Satisfied" Votes | 0 |
Total "Not Satisfied" Votes | 2 |
Total Rank Assessments | 2 |
Average Assessed Rank | 7 kyu |
Highest Assessed Rank | 7 kyu |
Lowest Assessed Rank | 7 kyu |