1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-20 01:56:57 +02:00
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;
}
}