gpt4 book ai didi

swift - 在swift 4中找到数组中所有元素的总和

转载 作者:行者123 更新时间:2023-12-03 23:22:05 26 4
gpt4 key购买 nike

我有这样的数组

let arr = [1,2,3,4,5,6,7,8,9,10]

我试过 var totalSum = arr.map({$0.points}).reduce(0, +)但没有工作

我可以找到所有对象的总和吗?

最佳答案

您需要删除 map & points

let arr = [1,2,3,4,5,6,7,8,9,10]

let totalSum = arr.reduce(0, +)

print("totalSum \(totalSum)")

关于swift - 在swift 4中找到数组中所有元素的总和,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50084414/

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