Problem
The current user profile graph tracks cumulative total problems solved. Since history data is cumulative, the graph only moves upward or stays flat, making it hard to see daily coding activity or productivity spikes at a glance.
Proposed Solution
Add a Daily Delta view (or a toggle between [Cumulative] and [Daily]) on the user profile chart.
Implementation Details
-
Data Calculation: Compute daily solved problems by finding the difference between consecutive history snapshots:
$$Daily_{solved} = Total_{day(n)} - Total_{day(n-1)}$$
-
UI Update: Introduce a simple toggle on the profile chart to switch between total cumulative progress and daily problem-solving velocity.
Problem
The current user profile graph tracks cumulative total problems solved. Since history data is cumulative, the graph only moves upward or stays flat, making it hard to see daily coding activity or productivity spikes at a glance.
Proposed Solution
Add a Daily Delta view (or a toggle between
[Cumulative]and[Daily]) on the user profile chart.Implementation Details