Files
2022-10-07 16:36:27 +03:00

14 lines
293 B
C#

namespace _142._Linked_List_Cycle_II;
internal class Program
{
static void Main(string[] args)
{
var l1 = new ListNode(3);
var l2 = new ListNode(2);
l1.next = l2;
l2.next = l1;
Console.WriteLine(new Solution().DetectCycle(l1)?.val);
}
}