LeetCode 1822. Sign of the Product of an Array
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
Solution
PreviousLeetCode 1820. Maximum Number of Accepted InvitationsNextLeetCode 1824. Minimum Sideway Jumps
Last updated