2 Star 1 Fork 0

royce li/Leetcode_royce

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
xorQueries.js 650 Bytes
一键复制 编辑 原始数据 按行查看 历史
royce li 提交于 2021-05-12 19:34 . 2021/5/12 每日一题
//1310 2021/5/12
/**
* @param {number[]} arr
* @param {number[][]} queries
* @return {number[]}
*/
var xorQueries = function(arr, queries) {
let xorCache=new Array(arr.length+1);
xorCache[0]=0;
let t=0;
arr.forEach((a,index) => {
t^=a;
xorCache[index+1]=t;
})
let ret=new Array(queries.length);
queries.forEach((q,index) => {
ret[index]=xorCache[q[0]]^xorCache[q[1]+1];
})
return ret;
};
// 执行用时:
// 140 ms
// , 在所有 JavaScript 提交中击败了
// 75.76%
// 的用户
// 内存消耗:
// 50 MB
// , 在所有 JavaScript 提交中击败了
// 100.00%
// 的用户
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/royce-li/leetcode_royce.git
git@gitee.com:royce-li/leetcode_royce.git
royce-li
leetcode_royce
Leetcode_royce
master

搜索帮助