About this question
Easy · mle_slice · Quant Researcher interview question · mle-slice
Given a matrix of floats m (a list of rows, each a list of floats), return a list containing the sum of each row, in order. Example: m = 1.5, 2.5, 3.0, 4.5 returns 4.0, 7.5.
Keep practicing