Interview Guides
Given a list of expected API test cases and a list of executed test results, write a function that returns True if the automated test run is reliable and False otherwise. A run is reliable only if every expected endpoint appears at least once, every required status code for that endpoint is covered, and no executed test for those required checks has passed = False.
1 <= len(expected) <= 10^31 <= total required status codes <= 10^40 <= len(results) <= 2 * 10^4