Skip to content

Commit 3b07cea

Browse files
committed
061
1 parent c0b2897 commit 3b07cea

3 files changed

Lines changed: 14 additions & 0 deletions

File tree

Algorithms/ListNode.cs

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
using Algorithms.Utils;
2+
3+
namespace Algorithms
4+
{
5+
public class ListNode : ListNode<int>
6+
{
7+
public int val;
8+
public ListNode next;
9+
public ListNode(int x) : base(x)
10+
{
11+
val = x;
12+
}
13+
}
14+
}

Algorithms/RotateList.cs

660 Bytes
Binary file not shown.

AlgorithmsTest/RotateListTest.cs

1.31 KB
Binary file not shown.

0 commit comments

Comments
 (0)