Day 64 of 133
Monitoring & drift (data / concept / label) + DSA 1-D DP
PSI / KS / JS for drift; closed-loop retraining; delayed labels.
DSA · NeetCode 1-D DP
- Maximum Product SubarrayDSA · 1-D DP
Interview questions to prep
- State the DP: define the state, the transition, and the base case explicitly.
- Top-down (memoized recursion) vs bottom-up (tabulation) — which is more natural here, and why?
- Can you space-optimize from O(n) to O(1)? Show the rolling-window trick.
- Word BreakDSA · 1-D DP
Interview questions to prep
- State the DP: define the state, the transition, and the base case explicitly.
- Top-down (memoized recursion) vs bottom-up (tabulation) — which is more natural here, and why?
- Can you space-optimize from O(n) to O(1)? Show the rolling-window trick.
MLOps · Monitoring & drift
Interview questions to prep
- Compare data drift vs concept drift vs label drift — give an example of each.
- Walk through three statistical tests you'd use to detect drift (PSI, KS, JS).
Interview questions to prep
- What metrics do you monitor for a deployed model beyond accuracy?
- How would you slice your model monitoring dashboard so a regression in one cohort doesn't get masked?
Interview questions to prep
- How would you decide when to retrain — schedule vs trigger-based?
- How do you monitor when ground-truth labels arrive with delay?
References & further reading