← All tasks
Data Processing·EasyOURS
CSV Sales Report
Given a CSV of orders (id, customer, product, category, qty, unit_price, date, status), compute: total revenue of completed orders, revenue per category (desc), top-3 customers by spend, and orders in a date range. Practice: parsing + group-by + top-N. Reuse the `live-coding-prep` mock dataset.