Hello,

Currently I am doing a LinkedList program using recursion. I have passed the tests for the other portions. However, I do not know how to start doing this problem inside the LinkedList question.

public LinkedList insert(String string) {

}


The passed tests includes:

getLetterCount()
getLongestWord()
getSentence()
getReversedSentence()
createLinkedList()
contains()
find()
findLast()
append()

Can someone help me? Thanks.