Skip to content
View nancy-gupta123's full-sized avatar

Block or report nancy-gupta123

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
nancy-gupta123/README.md
  • 👋 Hi, I’m @nancy-gupta123
  • 👀 I’m interested in ...
  • 🌱 I’m currently learning ...
  • 💞️ I’m looking to collaborate on ...
  • 📫 How to reach me ...
  • 😄 Pronouns: ...
  • ⚡ Fun fact: ...

---> Node copyList(Node head) { Node curr=head; while(curr!=NULL){ Node next=curr->next; curr->next=new Node(curr->data); curr->next->next=next; curr=next; } for(Node* curr=head;curr!=NULL;curr=curr->next->next){ curr->next->arb=(curr->arb==NULL)?NULL:curr->arb->next;

    }
    
    Node* h2=head->next;
    Node* copy=h2;
    for(Node* curr=head;curr!=NULL;curr=curr->next){
        curr->next=curr->next->next;
        copy->next=(copy->next!=NULL)?copy->next->next:NULL;
        copy=copy->next;
        
        
    }
    return h2;
    
}

Popular repositories Loading

  1. one-portfolio one-portfolio Public

    JavaScript 1

  2. js.hindi js.hindi Public

  3. js.hindi1 js.hindi1 Public

    a code repo

    JavaScript

  4. js-fb9gic js-fb9gic Public

    Created with StackBlitz ⚡️

    JavaScript

  5. js-lephn1 js-lephn1 Public

    Created with StackBlitz ⚡️

    HTML

  6. Number-guessing-game Number-guessing-game Public

    #Codsoft