What is strange to me is that this is much slower
function essai(n, s1, s2)
a = Vector{Int64}(n)
@inbounds for k = 1:n
ak = 0
for ss1 in s1, ss2 in s2
if ss1 > ss2
ak += 1
end
end
a[k] = ak
end
end
