20240826 finished.

This commit is contained in:
2024-08-26 11:22:13 +08:00
parent 7210c68a2f
commit c5bb4d2f43
7 changed files with 121 additions and 11 deletions

View File

@@ -0,0 +1,18 @@
using LeetCodeSharp.Problems690;
namespace LeetCodeSharp.Tests;
public class P690Tests
{
[Fact]
public void Test1()
{
var solution = new Solution();
Assert.Equal(11,
solution.GetImportance([
new Employee(1, 5, [2, 3]),
new Employee(2, 3, []),
new Employee(3, 3, [])
], 1));
}
}