跳到主要内容

810.黑板异或游戏

链接:810.黑板异或游戏
难度:Hard
标签:位运算、脑筋急转弯、数组、数学、博弈
简介:假设两个玩家每步都使用最优解,当且仅当 Alice 获胜时返回 true。

题解 1 - typescript

  • 编辑时间:2021-05-22
  • 执行用时:100ms
  • 内存消耗:39.9MB
  • 编程语言:typescript
  • 解法介绍:[参考链接](https://leetcode-cn.com/problems/chalkboard-xor-game/solution/hei-ban-yi-huo-you-xi-by-leetcode-soluti-eb0c/)。
function xorGame(nums: number[]): boolean {
return !(nums.length & 1) ? true : nums.reduce((total, cur) => total ^ cur, 0) === 0;
}