You are viewing a single comment's thread. Return to all comments →
scala
object Solution extends App { import scala.io.StdIn.readInt def f(num:Int) : List[Int] = { val list = List.range(0, num) list } println(f(readInt)) }
Seems like cookies are disabled on this browser, please enable them to open this website
Array Of N Elements
You are viewing a single comment's thread. Return to all comments →
scala