I am trying to get a list of positions of a value in a list in Intermediate Student Language.
For instance I wish a list of positions for value "A" in the following list
(list false A false false false false A false false false )
The output must be something like
(list 1 6)
Well there are a few things we can quickly understand, the first is that you're going to need to recurse through your initial list, and the second is that you're going to need to keep an accumulator list, and somehow have a notion of what element of the first list you're looking at, so we can also add a counter.
So,
I've added a local because the counter should be present, but we want the actual function to be tidy, so the call is simply requiring a list and a value.
This simply goes through the list one by one, and makes three checks
This results in a backwards list, so we reverse it at the end.
That's it! :)