Objective
Write a program that scans a string and prints the last lowercase e it finds.
Steps
$ ./find_last_e "merge later, test first"
e
$ ./find_last_e "ship it now"
(no output)
$ ./find_last_e
e
Expected files
Allowed functions

Objective
Write a program that scans a string and prints the last lowercase e it finds.
Steps
$ ./find_last_e "merge later, test first"
e
$ ./find_last_e "ship it now"
(no output)
$ ./find_last_e
e
Expected files
Allowed functions

Tests
Run the tests to grade your code