2024每日刷题(155)
Leetcode---3151. 特殊数组 I
实现代码
cpp
class Solution {
public:
bool isArraySpecial(vector<int>& nums) {
int n = nums.size();
for(int i = 1; i < n; i++) {
if(nums[i - 1] % 2 == nums[i] % 2) {
return false;
}
}
return true;
}
};
运行结果
之后我会持续更新,如果喜欢我的文章,请记得一键三连哦,点赞关注收藏,你的每一个赞每一份关注每一次收藏都将是我前进路上的无限动力 !!!↖(▔▽▔)↗感谢支持!