LearningScalaMaterials
LearningScalaMaterials copied to clipboard
Supplementary materials for the "Learning Scala" book from O'Reilly Media
In Chapter 7 exercise 1.c, as the first 100 of fibonacci numbers will exceed 64bits numbers, you can't use Int but also Long too! See the result below(The answer [here](https://github.com/swartzrock/LearningScalaMaterials/blob/master/Exercises/ch7-MoreCollections.asciidoc)...
For exercise 3 in chapter 1 we have to half value, but in answer it's not halved. 3) Take the result from exercise 2, **half it,** and convert it back...
In chapter One, 3rd assignment question, it is mentioned to half the result before converting back to centigrade but in solution, res0 is not halved. Actual result is Double =...
IMHO, the question says to generate 20 numbers but it generates odd numbers in range [0, 20] Adding fix for that. Thank You, Anshu
Hello, First off, great book. Second, OpenWeather's API changed so you need an API key now. Unfortunately, at least from my testing, the API does not return the same results...
…'s length is passed as an argument. The last element was not returned when the size of the List was passed as `count` argument. This problem did not occur when...
Exercise 3 states that the result from exercise 2 needs to be halved, which was not the case with the original solution.