예제 #1
0
 public ListNode(int val = 0, ListNode next = null)
 {
     this.val = val;
     this.next = next;
 }
예제 #2
0
 public Problem_206(ListNode head)
 {
     this.head = head;
 }