Given two vectors of equal length, compute their element-wise sum. Return a new list where each element is the sum of the corresponding elements from the two input vectors.
def vector_elementwise_sum(a: list[float], b: list[float]) -> list[float]:
return [x + y for x, y in zip(a, b)]zip to pair up corresponding elements from both vectors.