更正错别字

This commit is contained in:
ironartisan
2021-08-14 09:00:32 +08:00
parent c0e8605734
commit 5812968d02
2 changed files with 2 additions and 1 deletions

View File

@ -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节点的右子树节点
}

View File

@ -169,6 +169,7 @@ class Solution {
}
}
```
Python
```python
class Solution:
def commonChars(self, words: List[str]) -> List[str]: