[Solved]Write Function Occurn Takes Two Lists L1 L2 Counts Many Times Atom L1 Occurs 12 Examples O Q37258911
write the function occurN which takes two lists l1 and l2 andcounts how many times an atom in l1 occurs in 12.
examples: (occurN ‘(fudge ice cream) ‘(ice cream with fruit fordessert)) returns 2.
(occurN ‘(fudge fruit) ‘(ice cream with fruit for dessert) )returns1.
(occurN ‘(fudge ice cream) ()) return 0.
the language is Emacs Lisp.
for Emacs lisp
Expert Answer
Answer to write the function occurN which takes two lists l1 and l2 and counts how many times an atom in l1 occurs in 12. examples… . . .
OR

