Given a vector v, return a vector s containting the sum of every two adjacent elements in the vector.

Every element s(i) contains the sum of v(i) and v(i+1).

Example:

 v = [1, 2, 4, 4, 5, 8]
 s = [3, 6, 8, 9, 13]

Solution Stats

2912 Solutions

583 Solvers

Last Solution submitted on Feb 05, 2026

Last 200 Solutions

Problem Comments

Solution Comments

Show comments
Loading...