Ensure score calculations (points * difficulty * weight * bonus) cannot overflow. **Acceptance Criteria:** - Use checked arithmetic for all score math - Define maximum possible score - Return error on overflow instead of panic - Add test cases for edge values
Ensure score calculations (points * difficulty * weight * bonus) cannot overflow.
Acceptance Criteria: