Finish the method definition below.
customers
is an array of hashes, each of which has three keys: "name", "owes" and "debts". "debts" again stores an array of hashes, each of which has three keys: "amount", "date" and "customer".
Given customers
and a certain amount
, the method should return a list of all debt entries of customers who owe more than amount
.