1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-16 16:36:56 +02:00

kt: add «1863. Sum of All Subset XOR Totals»

Signed-off-by: Matej Focko <me@mfocko.xyz>
This commit is contained in:
Matej Focko 2024-05-20 15:47:02 +02:00
parent 1ef3050db6
commit 928354c370
Signed by: mfocko
GPG key ID: 7C47D46246790496

View file

@ -0,0 +1,18 @@
class Solution {
private fun xorSum(
nums: IntArray,
i: Int,
sum: Int,
): Int {
if (i == nums.size) {
return sum
}
val including = xorSum(nums, i + 1, sum xor nums[i])
val excluding = xorSum(nums, i + 1, sum)
return including + excluding
}
fun subsetXORSum(nums: IntArray): Int = xorSum(nums, 0, 0)
}