Recca Chao 的 gitHub page

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

View on GitHub

Kotlin Leetcode - 1389. Create Target Array in the Given Order

題目連接

class Solution {
    fun createTargetArray(nums: IntArray, index: IntArray): IntArray {

    }
}

解題思路

這一題考的是陣列處理

可以很簡單地利用 Kotlin 的 mutableList

透過 forEachIndexed 進行處理

Kotlin 參考解答

class Solution {
    fun createTargetArray(nums: IntArray, index: IntArray): IntArray {
        val workingList = mutableListOf<Int>()
        index.forEachIndexed { i, _ ->
            workingList.add(index[i], nums[i])
        }
        return workingList.toIntArray()
    }
}

回到 leetcode 列表