Files
Leetcode/141. Linked List Cycle/ListNode.cs
Electrominch c019e8856c Day7
2022-10-08 01:07:50 +03:00

15 lines
227 B
C#

namespace _141._Linked_List_Cycle;
//Definition for singly-linked list.
public class ListNode
{
public int val;
public ListNode? next;
public ListNode(int x)
{
val = x;
next = null;
}
}