Skip to content

Commit 3e7996d

Browse files
committed
Fix go report card
1 parent c1f4212 commit 3e7996d

File tree

1 file changed

+2
-1
lines changed
  • leetcode/0109.Convert-Sorted-List-to-Binary-Search-Tree

1 file changed

+2
-1
lines changed

leetcode/0109.Convert-Sorted-List-to-Binary-Search-Tree/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,5 @@ One possible answer is: [0,-3,9,-10,null,5], which represents the following heig
2727

2828
## 解题思路
2929

30-
思路比较简单,依次把链表的中间点作为根结点,类似二分的思想,递归排列所有结点即可。
30+
思路比较简单,依次把链表的中间点作为根结点,类似二分的思想,递归排列所有结点即可。
31+

0 commit comments

Comments
 (0)