We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
Problem has a confusing description. In the problem description tells you to return the list head node but the comments in the code tell you to return the whole list which can be confusing.
INTEGER_SINGLY_LINKED_LIST should be INTEGER_SINGLY_LINKED_LIST_NODE (LIST HEAD)
Insert a node at a specific position in a linked list
You are viewing a single comment's thread. Return to all comments →
Problem has a confusing description. In the problem description tells you to return the list head node but the comments in the code tell you to return the whole list which can be confusing. INTEGER_SINGLY_LINKED_LIST should be INTEGER_SINGLY_LINKED_LIST_NODE (LIST HEAD)