我用java刷 leetcode 1720. 解码异或后的数组

Posted 深林无鹿

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了我用java刷 leetcode 1720. 解码异或后的数组相关的知识,希望对你有一定的参考价值。

这里有leetcode题集分类整理!!!在这里插入图片描述

AC:

class Solution {
    public int[] decode(int[] encoded, int first) {
        int len = encoded.length + 1;
        int[] res = new int[len];
        res[0] = first;
        for (int i = 1 ; i < len ; i ++) {
            res[i] = res[i - 1] ^ encoded[i - 1];
        }
        return res;
    }
}

以上是关于我用java刷 leetcode 1720. 解码异或后的数组的主要内容,如果未能解决你的问题,请参考以下文章

我用Java刷 leetcode 554. 砖墙

我用java刷 leetcode 54. 螺旋矩阵

我用Java刷 leetcode 66. 加一

我用Java刷 leetcode 7. 整数反转

LeetCode1720. 解码异或后的数组(位运算)

LeetCode1720. 解码异或后的数组(位运算)