I got 3/5 partial credit. Do you believe I should of gotten full credit?
In implementing a linked list recursively, why do some methods require helper functions?
Answer:
Because you usually start doing the changes or methods, from the first element in the list, and we want to make sure that we start the insert from the first element in the list.
In implementing a linked list recursively, why do some methods require helper functions?
Answer:
Because you usually start doing the changes or methods, from the first element in the list, and we want to make sure that we start the insert from the first element in the list.