exercism-common-lisp/leslies-lists/HINTS.md
Adam Cooper 577860559e Initial commit
This "initial" commit occurs after five exercises have been completed
2025-01-23 19:43:42 -05:00

1.7 KiB

Hints

1. Making a new list

2. Add things to the list.

  • To add something to the beginning of a list it is idiomatic to CONStruct a new list with the item as the car and the list as the cdr. In the Hyperspec can be found a page that describes this function.

3. What's next thing(s) on the list?

4. Removing a thing from the list

  • An idiomatic way to remove the first item of a list is to use a function which can separate the cdr of the list from the car of the list. In the Hyperspec one can find a page describing one of the functions to do this.

5. Bigger lists out of smaller lists

6. How much longer?