Skip to content

Instantly share code, notes, and snippets.

View darkiri's full-sized avatar

Kirill Davletkildeev darkiri

View GitHub Profile
@darkiri
darkiri / scala-school-questions.md
Last active October 24, 2018 16:58 — forked from adnanced/scala-school-questions.md
Scala school questions
  • Scala syntax 5 questions - should be enough (?), there are question for beginner, intermediate and more advanced stuff. If not enough, more possible themes: type tags, dependent types...
    • How well do you know Option/Try/Either types from Scala standard library?
      • I heard about 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