You are viewing a single comment's thread. Return to all comments →
Here C# solution have some issue. Same code base from python, is working fine.
Python
def insertNodeAtHead(llist, data): # Write your code here head = SinglyLinkedListNode (data) head.next = llist return head
C#
static SinglyLinkedListNode insertNodeAtHead(SinglyLinkedListNode llist, int data) { var head = new SinglyLinkedListNode(data); head.next = llist; return head; }
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 →
Here C# solution have some issue. Same code base from python, is working fine.
Python
C#