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.
It must be something wrong with the task. The constrains says that the lsit is not null and data is not null. So I made a simple code:
SinglyLinkedListNode node =new SinglyLinkedListNode(data);
node.next=llist;
return node;
But I run in a bunch of nullable errors.
Also the explanation looks like an explanation from some other task.
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Insert a node at the head of a linked list
You are viewing a single comment's thread. Return to all comments →
It must be something wrong with the task. The constrains says that the lsit is not null and data is not null. So I made a simple code: