What is memoization and can it be implemented in Kotlin?
-
A
A form of recursion; no it cannot
-
B
Caching function results for reuse; yes it can be implemented using maps or delegates
-
C
A Kotlin-specific optimization applied automatically
-
D
A coroutine optimization technique