会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
Whisperbb
博客园
首页
新随笔
联系
管理
订阅
2021年4月13日
【LeetCode】1822. 数组元素积的符号
摘要: 思路:遍历判断每个数的正负 class Solution { public: int arraySign(vector<int>& nums) { int ans = 1; for(auto &n : nums){ if(n == 0) return 0; ans *= (n > 0) ? 1 :
阅读全文
posted @ 2021-04-13 00:16 Whisperbb
阅读(63)
评论(0)
推荐(0)
编辑
公告