Daily LeetCode – day0090 1822. Sign of the Product of an Array

// 1822. Sign of the Product of an Array
class Solution {
    public int arraySign(int[] nums) {
        int ans = 1;
        for (int num : nums) {
            if (num < 0) {
                ans *= -1;
            } else if (num == 0) {
                return 0;
            }
        }
        return ans;
    }
}
学习笔记:
这是一道简单的数组题目。
真的是一个大水题,没有任何科技含量。


关于樊轶群

一个善良的理想主义者。
此条目发表在每日LeetCode分类目录。将固定链接加入收藏夹。

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注