20240711 Finished

This commit is contained in:
2024-07-11 10:20:39 +08:00
parent c779dcecf8
commit bf2d07f763
2 changed files with 154 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
namespace LeetCodeSharp.Tests;
using LeetCodeSharp.Problems427;
public class P427Tests
{
[Fact]
public void Test1()
{
int[][] grid = [[0, 1], [1, 0]];
Solution solution = new();
Node root = solution.Construct(grid);
Assert.False(root.isLeaf);
}
}