1822. Sign of the Product of an Array
Easy
There is a function signFunc(x)
that returns:
1
ifx
is positive.-1
ifx
is negative.0
ifx
is equal to0
.
You are given an integer array nums
. Let product
be the product of all values in the array nums
.
Return signFunc(product)
.
Example 1:
Example 2:
Example 3:
Constraints:
1 <= nums.length <= 1000
-100 <= nums[i] <= 100
解題
Last updated