knakul853

Untitled

Jul 16th, 2020
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.19 KB | None | 0 0
  1. /**
  2. knakul853
  3.  */
  4. class Solution {
  5. public:
  6.     void deleteNode(ListNode* node) {
  7.        
  8.         node->val = node->next->val;
  9.         node->next = node->next->next;
  10.        
  11.     }
  12. };
Add Comment
Please, Sign In to add comment