I wrote the following function which checks if el appears in exp or any of its nested lists once or more and I'm having trouble understanding how to check for twice:
(define appearInExp?
(lambda (el exp)
(let ((found? (ormap (lambda (e) (equal? el e)) exp))
(listsLeft? (ormap (lambda (e) (list? e)) exp))
(lists (filter (lambda (e) (list? e)) exp)))
(if found?
#t
(if (not listsLeft?)
#f
(let ((elList (extendList el (length lists))))
(ormap appearInExp? elList lists)))))))
*help function:*
(define extendList
(lambda (el num)
(if (equal? num 1)
`(,el)
`(,el ,@(extendList el (- num 1))))))
**tests:
(appearInExp? '3 '(1 2 3)) ---> #t
(appearInExp? '3 '(1 2 '(3))) ---> #t
(appearInExp? '3 '(1 2 '(1 2 ((3))))) ---> #t
I guess I should add counter and make every recursive call count how many instances of el are in the relevant exp and sum them all together but I'm having trouble doing so..
your help will be very much appreciated.
Following works. It has a counter c and a loop to go through all items of the list. If the item is a list, the function is recusively called:
Output: