Skip to content

Commit

Permalink
更正错别字
Browse files Browse the repository at this point in the history
  • Loading branch information
ironartisan committed Aug 14, 2021
1 parent c0e8605 commit 5812968
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion problems/0100.相同的树.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ public:
return false;
}
que.push(leftNode->left); // 添加p节点的左子树节点
que.push(rightNode->left); // 添加q节点的左子树节点点
que.push(rightNode->left); // 添加q节点的左子树节点
que.push(leftNode->right); // 添加p节点的右子树节点
que.push(rightNode->right); // 添加q节点的右子树节点
}
Expand Down
1 change: 1 addition & 0 deletions problems/1002.查找常用字符.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,7 @@ class Solution {
}
}
```
Python
```python
class Solution:
def commonChars(self, words: List[str]) -> List[str]:
Expand Down

0 comments on commit 5812968

Please sign in to comment.