Scala Principles in a Nutshell (Part IV)
What is a recursive method? A method that calls itself many times before reaching a specific...
What is a recursive method? A method that calls itself many times before reaching a specific...
Let’s say that we have the following code in Scala (too similar to Java, btw): def...
Every computation in Scala is treated like a mathematical function, and the evaluation of these functions...
I could write a little paragraph about how much I like Scala and maybe use my...
In functional programming, lists are fundamental data structures, but in some cases, they can constitute a...