Recca Chao 的 gitHub page

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

View on GitHub

Kotlin Leetcode - 2469. Convert the Temperature

題目連接

class Solution {
    fun convertTemperature(celsius: Double): DoubleArray {
        
    }
}

解題思路

這一題很單純

只要將兩個計算後的數值

放進陣列即可

Kotlin 參考解答

class Solution {
    fun convertTemperature(celsius: Double) = 
        mutableListOf<Double>().apply {
            add(celsius + 273.15)
            add(celsius * 1.80 + 32.00)
        }
}

或者我們也可以用 listOf 直接建立 List

class Solution {
    fun convertTemperature(celsius: Double) = 
        listOf(
            celsius + 273.15, 
            celsius * 1.80 + 32.00
        )
}

回到 leetcode 列表