Skip to content

Instantly share code, notes, and snippets.

@fsubal
Created January 8, 2015 06:27
Show Gist options
  • Save fsubal/f18d944cf7f1e00333af to your computer and use it in GitHub Desktop.
Save fsubal/f18d944cf7f1e00333af to your computer and use it in GitHub Desktop.
func longer(a:String,b:String)->String {
if(countElements(b)>countElements(a)){ return b }
else{ return a }
}
var slist = ["asad","asdfgh","sadfbgnhj","sdfg","sdfxbcgbhmvgn","dfsghbjgknlm","ghfjgkcx"]
slist.reduce("", { longer($0, $1) }) // "sdfxbcgbhmvgn"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment