Day3. Start Algorithm
This commit is contained in:
11
206. Reverse Linked List/Program.cs
Normal file
11
206. Reverse Linked List/Program.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
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));
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user