I want to find the index of the maximum element in a list that satisfy certain conditions.
I have two lists a = [13, 17, 11, 24, 30]
and b = [10, 12, 13, 20, 28]
. I want to find the index i
of the maximum element in b
such that a[i]-b[i]>0
. The answer here is i=5
. Mathematically, I am looking for argmax_{i in S} b
where S = {i : a_i - b_i > 0}
.
My solution sorts the list and filters it. Is there a better approach?
filter(in(findall(>(0), a .- b)), sortperm(b, rev=true))
The following shows a method without a loop. Using a loop should be the easiest go-to solution. Additionally, benchmarking is demonstrated. Also, the
let
block shows how to avoid allocations from capturing variables in a closure.For completeness, a benchmark of a
loop
version: