Files
Leetcode/206. Reverse Linked List/Program.cs
2022-10-07 16:36:27 +03:00

10 lines
223 B
C#

namespace _206._Reverse_Linked_List;
internal class Program
{
static void Main(string[] args)
{
var l = ListNode.Create(new int[] { 1 });
Console.WriteLine(new Solution().ReverseList(l));
}
}