Input: orders = [{id:1,customer_id:1,total:50},{id:2,customer_id:1,total:200},{id:3,customer_id:2,total:80},{id:4,customer_id:2,total:80}]
Output: [{id:2,customer_id:1,total:200}]
Explanation: Customer 1 avg = 125; order 2 (200) is above. Customer 2 avg = 80; nobody is strictly above.