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.
Hello developers now i am solve the problem with javascript
For Just understanding i am not giving the full answer to you i will give you the hints okh bro
condition if the head is empty
// make the new node => let newNode =new singlyLinkedList(data);
let currentNode=head;
loop and find the prevous node of the tail currentNode=currentNode.next
currentNode.next=newNode
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 Tail of a Linked List
You are viewing a single comment's thread. Return to all comments →
Hello developers now i am solve the problem with javascript
For Just understanding i am not giving the full answer to you i will give you the hints okh bro condition if the head is empty
// make the new node => let newNode =new singlyLinkedList(data); let currentNode=head; loop and find the prevous node of the tail currentNode=currentNode.next
currentNode.next=newNode