(define myList ‘(a b c d e a f))
how can i return a list of all the occurrences of ‘a. in this case the returned value is ‘(a a)
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can simply iterate your list with a result list, and cons the searched element whenever you find a match:
By the way, I wrote this in Racket but it should work in any Scheme dialects/implementations.