#3701

Compute Alternating Sum

easy · 89.7% accepted · 63 likes · top 99%

array · simulation

⊣ practice⊣ open on leetcode ↗

Description

You are given an integer array nums.

The alternating sum of nums is the value obtained by adding elements at even indices and subtracting elements at odd indices. That is, nums[0] - nums[1] + nums[2] - nums[3]...

Return an integer denoting the alternating sum of nums.

Solution