gpt4 book ai didi

scala - 使用数组作为 Scala foldLeft 累加器

转载 作者:行者123 更新时间:2023-12-03 22:16:59 24 4
gpt4 key购买 nike

我正在尝试在数组上使用 foldLeft。例如:

var x = some array 
x.foldLeft(new Array[Int](10))((a, c) => a(c) = a(c)+1)

这拒绝使用发现 Int(0) required Array[Int] 的错误进行编译。

最佳答案

为了使用foldLeft在你想做的事情中,按照你的风格,你可以像这样在计算中返回相同的累加器数组:

val ret = a.foldLeft(new Array[Int](10)) {
(acc, c) => acc(c) += 1; acc
}

或者,由于您的数字是从 0 到 9,您也可以这样做以获得相同的结果:
val ret = (0 to 9).map(x => a.count(_ == x))

关于scala - 使用数组作为 Scala foldLeft 累加器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28841820/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com