Execute Callable objects

Report a typo

You are given a List of Future objects that return Callable<Integer>. You should execute these Callable objects in the reverse order, starting from the end of the List.

Return the sum of values returned by these Callable objects.

Write a program in Kotlin
import java.util.concurrent.*

fun executeCallableObjects(items: List<Future<Callable<Int>>>): Int {
// write your code here
}
___

Create a free account to access the full topic