In EMACS Lisp:Write the function insertL which takes three arguments: theatoms new and old, and a list of atoms. It builds a list with newinserted to the left of the first occurrence of old.Write the function occurN which takes two lists 11 and 12 and counts how many times an atom in 11 occurs in 12 Examples: (occurN ‘(fudge ice cream) ‘(ice cream with fruit for dessert)) returns 2. (occurN ‘(fudge fruit) (ice
OR
OR