Medium
Design a Group Expense-Splitting Ledger Object-Oriented Design Interview
Design a system where users form groups, log shared expenses using pluggable splitting strategies (equal/exact/percentage), maintain pairwise balances, and settle debts.
1. Problem Statement
Design a group expense-splitting ledger: users form groups, any member can log a shared expense split equally, by exact amount, or by percentage, the system tracks running pairwise balances, and users can settle debts fully or partially.
2. Live Coding Format
Work in the provided coding workspace while explaining your decisions to the live interviewer. Validation may use inline tests, examples, comments, or a verbal walkthrough.
3. Key Focus Areas
- 1Split strategy abstraction (equal/exact/percentage)
- 2Expense and Group entity modeling
- 3Pairwise balance consistency
- 4Settlement handling (full/partial)
- 5Debt-simplification as a stretch extension
4. What Strong Candidates Should Demonstrate
- ✓Use the Strategy pattern so new split types do not require editing Expense or Ledger.
- ✓Keep pairwise balance bookkeeping consistent as expenses and settlements accumulate.
- ✓Validate percentage/exact splits sum correctly before committing an expense.
- ✓Reason about extending the design toward debt-simplification (minimizing settlement transactions).
Want interactive feedback?
Practice this problem in the live coding workspace while the interviewer probes your clarification, implementation, trade-offs, and validation.
Start InterviewCore Concepts
Object-Oriented DesignStrategy PatternLedger Modeling
