Given blocked_ids = {42, 17, 99, 23} and requests = [12, 17, 5, 99, 42, 7, 23, 100], count how many
A medium Python interview practice problem on DataDriven. Write and execute real python code with instant grading.
- Domain
- Python
- Difficulty
- medium
Problem
Given blocked_ids = {42, 17, 99, 23} and requests = [12, 17, 5, 99, 42, 7, 23, 100], count how many requests target a blocked_id using O(1) set membership. Print the count.
Practice This Problem
Solve this Python problem with real code execution. DataDriven runs your Python code in a real environment and grades it automatically.