Skip to content

Commit 3f69f1e

Browse files
authored
Merge pull request #91 from sir-gon/main-cf-autofix
Apply fixes from CodeFactor
2 parents 5563e8c + 4dcc647 commit 3f69f1e

File tree

10 files changed

+0
-10
lines changed

10 files changed

+0
-10
lines changed

algorithm-exercises-csharp-test/src/hackerrank/interview_preparation_kit/arrays/ArraysLeftRotation.Test.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ public void testRotLeftOne()
3737
}
3838
}
3939

40-
4140
[TestMethod]
4241
public void testRotLeft()
4342
{

algorithm-exercises-csharp-test/src/hackerrank/projecteuler/Euler003.Test.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
// Notes about final solution please see:
33
// @link [[docs/hackerrank/projecteuler/euler003-solution-notes.md]]
44

5-
65
namespace algorithm_exercises_csharp.hackerrank.projecteuler;
76

87
[TestClass]

algorithm-exercises-csharp-test/src/hackerrank/warmup/PlusMinus.Test.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ public void testPlusMinus()
1111
string result = PlusMinus.plusMinus(a);
1212

1313
Assert.AreEqual(expectedAnswer, result);
14-
1514
}
1615
}
1716

algorithm-exercises-csharp-test/src/hackerrank/warmup/SolveMeFirst.Test.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ public void testSolveMeFirst()
1212
int result = SolveMeFirst.solveMeFirst(a, b);
1313

1414
Assert.AreEqual(expectedAnswer, result);
15-
1615
}
1716
}
1817

algorithm-exercises-csharp/src/hackerrank/interview_preparation_kit/arrays/ArraysLeftRotation.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ public static List<int> rotLeftOne(List<int> input)
2323
return input;
2424
}
2525

26-
2726
/**
2827
* This implementation does not mutate the input list.
2928
*/

algorithm-exercises-csharp/src/hackerrank/warmup/BirthdayCakeCandles.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,4 @@ public static int birthdayCakeCandles(List<int> _arr)
3838

3939
return counter;
4040
}
41-
4241
}

algorithm-exercises-csharp/src/hackerrank/warmup/MiniMaxSum.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,4 @@ public static string miniMaxSum(List<int> arr)
3131

3232
return string.Format("{0} {1}", tsum - tmax, tsum - tmin);
3333
}
34-
3534
}

algorithm-exercises-csharp/src/hackerrank/warmup/PlusMinus.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ public static string plusMinus(List<int> arr)
3232
}
3333
}
3434

35-
3635
List<string> result = [];
3736
var nfi = new NumberFormatInfo() { NumberDecimalSeparator = "." };
3837

algorithm-exercises-csharp/src/hackerrank/warmup/SolveMeFirst.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,4 @@ public static int solveMeFirst(int _a, int _b)
1313
{
1414
return _a + _b;
1515
}
16-
1716
}

algorithm-exercises-csharp/src/hackerrank/warmup/Staircase.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,4 @@ public static string staircase(int _n)
3434
}
3535
return String.Join("\n", result);
3636
}
37-
3837
}

0 commit comments

Comments
 (0)