Recca Chao 的 gitHub page

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

View on GitHub

Kotlin Leetcode - 1022. Sum of Root To Leaf Binary Numbers

題目連接

class Solution {
    fun sumRootToLeaf(root: TreeNode?, s: String = ""): Int {
    }
}

解題思路

這題基本上處理的是樹的遞迴

遞迴之後,利用 Kotlin 的 toInt 可以很簡單的進行二進位轉換

Kotlin 參考解答

class Solution {
    fun sumRootToLeaf(root: TreeNode?, s: String = ""): Int =
        if (root == null) 0
        else (s + root.`val`).let {
            if (root.left == null && root.right == null) it.toInt(2)
            else sumRootToLeaf(root.left, it) + sumRootToLeaf(root.right, it)
        }
}

回到 leetcode 列表