Files
Leetcode/206. Reverse Linked List/Program.cs
2022-10-05 00:44:15 +03:00

11 lines
257 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));
}
}
}