Combine multiple transformations

Report a typo

We have a flow that emits all integer numbers.

Add transformations to it to only take the first 10 even numbers greater than 99. Also, convert these numbers into a string representation in the hexadecimal (base 16) format.

Tip: An even number is a number divisible by 2.

Tip: Convert int into string with a given radix using the Int.toString(radix: Int) function.

Write a program in Kotlin
// transform given intFlow into a new one according to the task
val flow = intFlow
___

Create a free account to access the full topic