これが私のコードです:
package example
object Lists {
def max(xs: List[Int]): Int = {
if(xs.isEmpty){
throw new java.util.NoSuchElementException()
}
else {
max(xs.tail)
}
}
}
sbt コンソールで実行すると:
scala> import example.Lists._
scala> max(List(1,3,2))
次のエラーがあります。
Scala.NotImplementedError: an implementation is missing
どうすれば修正できますか?
ありがとう。