Skip to content

Instantly share code, notes, and snippets.

@adnanced
adnanced / scala-school-questions.md
Last active October 24, 2018 14:38
Scala school questions
  • Scala syntax
    • How well do you know Option/Try/Either/Future types from Scala standard library?
      • I don't use them
      • I use them, but I don't see clear benefits
      • I use them and understand the benefits, but I struggle with them
      • I fully understand why we use them and have no problems with them
    • How do you get and combine values from those types mentioned above?
      • I don't
      • I use map/flatMap most of the time
  • I try using for-comprehension most of the time