mirror of
https://github.com/youngyangyang04/leetcode-master.git
synced 2026-02-02 18:39:09 +08:00
fix: 修复C#代码高亮问题
This commit is contained in:
@@ -709,7 +709,7 @@ impl Solution {
|
||||
}
|
||||
```
|
||||
### C#
|
||||
```C#
|
||||
```csharp
|
||||
// 递归
|
||||
public int MinDepth(TreeNode root)
|
||||
{
|
||||
@@ -725,7 +725,7 @@ public int MinDepth(TreeNode root)
|
||||
return res;
|
||||
}
|
||||
```
|
||||
```C#
|
||||
```csharp
|
||||
// 迭代
|
||||
public int MinDepth(TreeNode root)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user