码迷,mamicode.com
首页 > 其他好文 > 详细

【每日一题】

时间:2021-05-24 06:48:05      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:lan   ret   -o   length   http   get   subarray   leetcode   etc   

https://leetcode-cn.com/problems/xor-queries-of-a-subarray/

缓存一下

class Solution {
    public int[] xorQueries(int[] arr, int[][] queries) {
        int n = arr.length;
        int[] xors = new int[n + 1];
        for (int i = 0; i < n; i++) {
            xors[i + 1] = xors[i] ^ arr[i];
        }
        int m = queries.length;
        int[] ans = new int[m];
        for (int i = 0; i < m; i++) {
            ans[i] = xors[queries[i][0]] ^ xors[queries[i][1] + 1];
        }
        return ans;
    }
}

【每日一题】

标签:lan   ret   -o   length   http   get   subarray   leetcode   etc   

原文地址:https://www.cnblogs.com/realzhaijiayu/p/14759405.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!