美文网首页
swift(4.0) 获取数组中的最大值

swift(4.0) 获取数组中的最大值

作者: JackMayx | 来源:发表于2018-08-26 09:35 被阅读9次
    ///获取数组中的最大值
        func getArrayMaxOne<T:Comparable>(_ seq:[T]) ->T{
            
            assert(seq.count>0)
            
            return seq.reduce(seq[0]){
                
                max($0, $1)
            }
        }
    

    相关文章

      网友评论

          本文标题:swift(4.0) 获取数组中的最大值

          本文链接:https://www.haomeiwen.com/subject/hnnniftx.html