-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
26 lines (23 loc) · 738 Bytes
/
Program.cs
File metadata and controls
26 lines (23 loc) · 738 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
using System;
namespace leetcode
{
class Program
{
static void Main(string[] args)
{
var s = new Solution();
ListNode list1 = new ListNode(1);
list1.next = new ListNode(2);
list1.next.next = new ListNode(3);
list1.next.next.next = new ListNode(4);
list1.next.next.next.next = new ListNode(5);
list1.next.next.next.next.next = new ListNode(6);
var remove = s.RemoveNthFromEnd(list1, 5);
do
{
Console.WriteLine(remove.val);
remove = remove.next;
} while (remove != null);
}
}
}