What is the interpretation of the following two executions? ```julia julia> findfirst(==(-7), 1:-1:-10) julia> findfirst(==(-7), collect(1:-1:-10)) 9 ```
What is the interpretation of the following two executions?