Your question is Find Transaction IDs Not in Second List. Start with the requirements on the right.
Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.
Given two lists of transaction IDs, list1 and list2, return a list of transaction IDs that exist in list1 but not in list2.
def find_missing_transactions(list1, list2):