find_indices
function
l
find_indices(P, L) returns the list of
indices of elements of L that satisfy P.
l
Example:
find_indices(odd, [2, 4, 6, 7, 9, 8, 12, 13])
==>
[3, 4, 7]