gpt4 book ai didi

Scala - 将列表列表转换为单个列表 : List[List[A]] to List[A]

转载 作者:行者123 更新时间:2023-12-03 07:47:55 29 4
gpt4 key购买 nike

在 scala (2.9) 中转换列表列表的最佳方法是什么?

我有一个 list :

List[List[A]]

我想转换成

List[A]

如何递归地实现这一点?或者还有其他更好的办法吗?

最佳答案

List 有 flatten 方法。为什么不使用它?

List(List(1,2), List(3,4)).flatten
> List(1,2,3,4)

关于Scala - 将列表列表转换为单个列表 : List[List[A]] to List[A],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12600863/

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