[Swift]配列にreduceを使うサンプル 2020年6月1日サンプルコード let arr = [4, 5, 6, 7, 8] let avg= arr.reduce(0) { $0 + $1 } print(avg) SwiftPosted by arkgame