Skip to content

Instantly share code, notes, and snippets.

@bijancn
Last active May 30, 2018 12:16
Show Gist options
  • Save bijancn/599717764575b8df5f312b3139799786 to your computer and use it in GitHub Desktop.
Save bijancn/599717764575b8df5f312b3139799786 to your computer and use it in GitHub Desktop.
def countSpaces(word: List[Char]): Int =
word.foldLeft(0)((count: Int, char: Char) =>
if (char == ' ') {
count + 1
} else {
count
}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment