Challenge #4
Lesson 13 of 14 in Coddy's Dictionary in Python course.
Challenge
EasyCreate a function named find_most_recent_book that finds the most recently published book in a library catalog. The function should take the library catalog as an input parameter and return the title of the book that is the most recently published.
Try it yourself
def find_most_recent_book(library_catalog):
# Write code here