Easy
,Array
,Math
1822. Sign of the Product of an Array
There is a function signFunc(x)
that returns:
1
if x
is positive.-1
if x
is negative.0
if x
is equal to 0
.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:
nums.length
<= 1000nums[i]
<= 100Ron ChenTue, May 2, 2023
MarsgoatTue, May 2, 2023
JimWed, May 3, 2023