为什么此代码在 Kotlin Playground 或其他 IDE 中不起作用?

Why this code doesn't work in Kotlin Playground or other IDEs?

import kotlin.collections.maxByOrNull
import kotlin.test.*

fun main() {
    var inputArray = mutableListOf(3, 6, -2, -5, 7, 3)
    solution(inputArray)
}
fun solution(inputArray: MutableList<Int>): Int {
  return inputArray.zipWithNext(Int::times).maxOrNull() ?: 0
}

我试图在我的浏览器中测试这个答案,但我做不到。

您的代码可以正常工作,但您没有使用 solution 方法的结果。

fun main() {
    var inputArray = mutableListOf(3, 6, -2, -5, 7, 3)
    val output = solution(inputArray)

    // do something with output. At least print it to see
    println("output is $output") // output is 21
}

fun solution(inputArray: MutableList<Int>): Int {
  return inputArray.zipWithNext(Int::times).maxOrNull() ?: 0
}