Given a start wiki/web page and a target wiki/web page, find the minimum number of clicks (hops) needed to navigate from the start page to the target page. You are provided a helper function (e.g., get_all_links(page)) that returns all outgoing links (child pages) from a given page.…