Search⌘ K
AI Features

Make Array Zero by Subtracting Equal Amounts

Try to solve the Make Array Zero by Subtracting Equal Amounts problem.

We'll cover the following...

Statement

Given an integer array nums, you can perform the following operation any number of times.

In one operation, select a positive integer x such that at least one element of nums is nonzero, and for every index i where nums[i] > 0, replace nums[i] with nums[i] - x.

Return the minimum number of operations required to make every element in nums equal to ...