问答详情
源自:7-7 Swift-函数类型

字符串比较

我直接写成:

var strArr = ["d", "cd", "bcd", "abcd", "abc", "ab", "a"]


sorted( strArr )


func compareTwoString(s1:String, s2:String)->Bool{return

    countElements(s1) < countElements(s2) || countElements(s1) == countElements(s2) ? (s1 < s2) : false

}

sorted(strArr, compareTwoString )

可以实现  但是 请老师帮看看

提问者:尐圊哖 2015-03-10 15:14

个回答

  • Jay
    2015-03-10 16:40:36

    写的挺好的