Skip to content

Instantly share code, notes, and snippets.

@haranicle
Created February 6, 2016 05:13
Show Gist options
  • Save haranicle/504b86b679c50909f889 to your computer and use it in GitHub Desktop.
Save haranicle/504b86b679c50909f889 to your computer and use it in GitHub Desktop.
letで再帰 #CodePiece #cswift
let sum: ([Int]) -> Int
sum = { values in
if values.isEmpty {
return 0
}
else {
return values.first! + sum(Array(values.dropFirst()))
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment