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