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:
@@ -772,7 +772,7 @@ impl Solution {
|
||||
### C#
|
||||
|
||||
> 递归法:
|
||||
```C#
|
||||
```csharp
|
||||
public TreeNode DeleteNode(TreeNode root, int key) {
|
||||
// 第一种情况:没找到删除的节点,遍历到空节点直接返回了
|
||||
if (root == null) return null;
|
||||
|
||||
Reference in New Issue
Block a user