auto commit

This commit is contained in:
CyC2018
2019-05-14 17:05:21 +08:00
parent b030033abd
commit 688398585f
5 changed files with 7 additions and 4 deletions

View File

@ -77,7 +77,7 @@ The above output corresponds to the 5 unique BST's shown below:
```java
public List<TreeNode> generateTrees(int n) {
if(n < 1){
if (n < 1) {
return new LinkedList<TreeNode>();
}
return generateSubtrees(1, n);