Minimum Steps to Reduce Array Elements to 0
You are given an integer array, and your task is to perform a series of operations to make all elements in the array equal to 0.
Operation Details:
You are given an array arr consisting of n integers. Your task is to determine the minimum number of operations required to convert every element in the array to 0.
A prefix is defined as a contiguous group of items that includes the first element in the cart. For example, [1], [1, 2], [1, 2, 3] etc are prefixes of [1, 2, 3, 4, 5].
It is guaranteed that it is always possible to convert every element of the given array to 0 using the allowed operations.
✎﹏Credit to ⟡ Sndix ⟡ 🦋
1Example 1
Constraints
Limits and guarantees your solution can rely on.
Unknown for now