first_valid_entry(attempts, minimum) that simulates validating a sequence of pre-supplied input attempts (a list of numbers) using a while loop with an index counter. Return the first value in attempts that is greater than or equal to minimum. If none qualify, return None.first_valid_entry([2, 5, 9, 3], 5)
5
5 is the first value >= 5.
first_valid_entry([1, 2, 3], 10)
None
No value meets the minimum.
Track an index `i = 0` and loop `while i < len(attempts):`.
Return as soon as you find a qualifying value; return None after the loop if nothing matched.