Rezolvati urmatoarele exercitii:
'(contains 2 '(1 2 3 4))
' ⇒ '#t
'(contains `(1 2) `(1 ,`(1 2) ,`(2 3)))
⇒ #t
(duplicate '(a b c) 3)
⇒ '(a a a b b b c c c)
.(sublist 2 4 '(a b c d e f g))
⇒ '(b c d)
.(insert_at e 2 '(a b c d f))
⇒ '(a e b c d f)
.(prime? 7)
⇒ #t
(prime? 8)
⇒ #f
(primes 3 12)
⇒ '(3 5 7 11)
.