Recca Chao 的 gitHub page

推廣網站開發,包含 Laravel 和 Kotlin 後端撰寫、自動化測試、讀書心得等。Taiwan Kotlin User Group 管理員。

View on GitHub

Kotlin Leetcode - 1486. XOR Operation in an Array

題目連接

class Solution {
    fun xorOperation(n: Int, start: Int): Int {
        
    }
}

解題思路

這一題考的是陣列內 xor 處理

Kotlin 參考解答

點擊展開解答

單一表達式的解法如下

class Solution {
    fun xorOperation(n: Int, start: Int) =
        List(n) { start + 2 * it }
            .foldRight(0) { acc, c -> acc xor c }
}

回到 leetcode 列表