this is mine ```fun Shop.getCustomersWithMoreUndel...
# getting-started
e
this is mine
Copy code
fun Shop.getCustomersWithMoreUndeliveredOrdersThanDelivered(): Set<Customer> =
    customers.partition { it.orders.filter { it.isDelivered == false }.count() > it.orders.filter { it.isDelivered == true }.count() }.first.toSet()