Back to Python Challenges
Back
Fix Thread Safety Issue in Shared Global State
Medium
Problem
Multiple threads modify shared global dictionary without locks, causing data corruption.
Code Editor
Solution
Fullscreen
Reset