1822. Sign of the Product of an Array

1822. Sign of the Product of an Array #

题目 #

  • 给定整数数组 nums,令product为数组nums中所有元素值的乘积。
  • 返回乘积的符号。

思路 #

模拟 #

代码 #

模拟 #

class Solution {
    public int arraySign(int[] nums) {
        int ans = 1;
        for (int num: nums) {
            if (num == 0) return 0;
            else if (num < 0) ans *= -1;
        }
        return ans;
    }
}

致谢 #

宫水三叶