using System;
public class Program
{
public static void Main()
Console.WriteLine("Hello World");
}
//
private static LinkedListNode _deleteNodeRecurrsive(LinkedListNode head, int key){
if(head == null){
return head;
if(head.data == key){
LinkedListNode temp = head.next;
return temp;
head.next = _deleteNodeRecurrsive(head.next,key);