Let's do some sequential computations by lambdas. We have a list of names:
val names = List("John", "Smith", "Bob", "Fitzgerald")
Choose the correct lambdas to calculate the sum of the name lengths which are more or equal to 5:
names
.map(???)
.filter(???)
.foldLeft(0)(???)