Exercise: Implement Python's map Function

Implement Python's 'map' function in C++.

We'll cover the following...

The map applies a callable to each element of the input sequence.

Challenge

Implement Python’s map function using the ranges library in C++.

Try to solve the question below. Feel free to view the solution in the next lesson after giving it a few shots. Good luck!