1. Description:
Notes:
2. Examples:
3.Solutions:
/** * Created by sheepcore on 2019-05-10 * Definition for singly-linked list. * public class ListNode { * int val; * ListNode next; * ListNode(int x) { val = x; } * } */ class Solution { public void deleteNode(ListNode node) { node.val = node.next.val; node.next = node.next.next; } }