Write a LISP function, “listOfNeighbors”, which is given two arguments, the first argument is an atom A and the second a
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
Write a LISP function, “listOfNeighbors”, which is given two arguments, the first argument is an atom A and the second a
Write a LISP function, “listOfNeighbors”, which is given twoarguments, the first argumentis an atom A and the second argument L is a list of sub-lists. Thefunction should find thefirst sub-list in L whose first element is equal to A and returnthe tail of that list.For example:➢ (listOfNeighbors ‘c ‘( (a b c d) (b d e) (c e f) (d e f) ))Returns:(e f)