Skip to content

Commit b142228

Browse files
author
Gonzalo Diaz
committed
WIP
1 parent 61a2503 commit b142228

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/algorithm_exercises_csharp_test/hackerrank/interview_preparation_kit/arrays/ArraysLeftRotation.Test.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ public class ArraysLeftRotationTest
77
{
88
public class ArraysLeftRotationsTestCase
99
{
10-
public List<int> input { get; } = default!;
10+
public List<int> input { get; set; } = default!;
1111
public int d { get; set; }
12-
public List<int> expected { get; } = default!;
12+
public List<int> expected { get; set; } = default!;
1313
}
1414

1515
private List<ArraysLeftRotationsTestCase> testCases = default!;

src/algorithm_exercises_csharp_test/hackerrank/interview_preparation_kit/arrays/CrushBruteForce.Test.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ public class CrushBruteForceTest
88
public class CrushBruteForceTestCase
99
{
1010
public string title { get; set; } = default!;
11-
public List<List<int>> queries { get; } = default!;
11+
public List<List<int>> queries { get; set; } = default!;
1212
public int n { get; set; } = default!;
1313
public long expected { get; set; } = default!;
1414
}

0 commit comments

Comments
 (0)