跳到主要内容

3151.特殊数组I

链接:3151.特殊数组I
难度:Easy
标签:数组
简介:如果数组的每一对相邻元素都是两个奇偶性不同的数字,则该数组被认为是一个 特殊数组 。Aging 有一个整数数组 nums。如果 nums 是一个 特殊数组 ,返回 true,否则返回 false。

题解 1 - python

  • 编辑时间:2024-08-13
  • 执行用时:46ms
  • 内存消耗:16.46MB
  • 编程语言:python
  • 解法介绍:遍历
class Solution:
def isArraySpecial(self, nums: List[int]) -> bool:
return all(
(nums[i] & 1) ^ (nums[i + 1] & 1)
for i in range(len(nums) - 1)
)