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.
I was hoping for a golang option. C++ is good enough I suppose...
Node*insert(Node*head,intdata){//Complete this method Node*dummyNode=newNode(0);dummyNode->next=head;Node*newNode=newNode(data);Node*current=dummyNode;while(current->next!=NULL){current=current->next;}current->next=newNode;returndummyNode->next;}
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Day 15: Linked List
You are viewing a single comment's thread. Return to all comments →
I was hoping for a golang option. C++ is good enough I suppose...