[#0166] feat(leetcode): init project

This commit is contained in:
2025-09-24 09:35:00 +08:00
parent 959f8a6861
commit 5189c524ef
9 changed files with 220 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
// LeetCode 166 單元測試xUnit
using Xunit;
public class SolutionTests {
private readonly Solution _s = new Solution();
[Fact]
public void Example1() {
// TODO: Arrange
// var input = new int[] { };
// var expected = 0;
// Act
// var got = _s.Solve(input);
// Assert.Equal(expected, got);
Assert.True(true);
}
[Fact]
public void EdgeCases() {
Assert.True(true);
}
}