gpt4 book ai didi

haskell - 在 Haskell 中添加列表的惯用方法是什么?

转载 作者:行者123 更新时间:2023-12-02 07:24:44 26 4
gpt4 key购买 nike

假设我想在 Haskell 中添加两个列表。最常用的方法是什么?

这就是我所做的:

addLists :: (Integral a) => [a] -> [a] -> [a]
addLists xs ys = map add $ zip xs ys
where add (x, y) = x+y

最佳答案

有一个zipWith使用提供的函数组合两个列表的库函数。它完全符合您的要求,您将得到:

addLists = zipWith (+)

这使用 (+) 来组合作为进一步参数给出的列表的元素。

关于haskell - 在 Haskell 中添加列表的惯用方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4776750/

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