LeetCode/cs/ListNode.cs

10 lines
188 B
C#
Raw Normal View History

public class ListNode {
public int val;
public ListNode? next;
public ListNode(int val = 0, ListNode? next = null) {
this.val = val;
this.next = next;
}
}