Open
Description
Write in Python the function def my_enumerate(input_list)
which behave like the built-in function enumerate()
introduced in Section "Linear search" and returns a proper list, and accompany the function with the related test case. It is not possible to use the built-in function enumerate()
in the implementation.