Skip to content

Commit 9bb9be7

Browse files
committed
dotnet format
1 parent cd4f6ea commit 9bb9be7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

LeetCode.CSharp/Problems/AddTwoNumbers.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public static ListNode AddTwoNumbers(ListNode l1, ListNode l2)
4848

4949
[Theory]
5050
[InlineData(new[] { 2, 4, 3 }, new[] { 5, 6, 4 }, new[] { 7, 0, 8 })]
51-
[InlineData(new int[] {}, new int[] {}, new int[] {})]
51+
[InlineData(new int[] { }, new int[] { }, new int[] { })]
5252
[InlineData(
5353
new[] { 9, 9, 9, 9, 9, 9, 9 },
5454
new[] { 9, 9, 9, 9 },

LeetCode.CSharp/Problems/BinarySearch.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public static int BinarySearch(int[] nums, int target)
3838
[Theory]
3939
[InlineData(new[] { -1, 0, 3, 5, 9, 12 }, 9, 4)]
4040
[InlineData(new[] { -1, 0, 3, 5, 9, 12 }, 2, -1)]
41-
[InlineData(new int[] {}, 0, -1)]
41+
[InlineData(new int[] { }, 0, -1)]
4242
public void BinarySearchTest(int[] nums, int target, int expected) =>
4343
BinarySearch(nums, target).Should().Be(expected);
4444
}

0 commit comments

Comments
 (0)