You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 5, 2026. It is now read-only.
As a developer
I want correct median calculation with proper spelling
So that statistical analysis is accurate
Current Behavior
medain()instead ofmedian()Location:
src/java/DataProcessor.javaline 40Expected Behavior
For even-length lists, return average of two middle values.
Example
[1, 2, 3, 4]should return2.5, not3Acceptance Criteria
median()