Something along these lines: ``` return getOversta...
# getting-started
s
Something along these lines:
Copy code
return getOverstayZonesConfig() //<- list of list of Points
                    .filter { list ->
                        list.filter { point -> // it = list of points
                            bounds.contains(point.toLatLng()) // it - point
                        }.any()
                    }