mirror of
https://github.com/youngyangyang04/leetcode-master.git
synced 2025-07-10 20:40:39 +08:00
更正错别字
This commit is contained in:
@ -159,7 +159,7 @@ public:
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
que.push(leftNode->left); // 添加p节点的左子树节点
|
que.push(leftNode->left); // 添加p节点的左子树节点
|
||||||
que.push(rightNode->left); // 添加q节点的左子树节点点
|
que.push(rightNode->left); // 添加q节点的左子树节点
|
||||||
que.push(leftNode->right); // 添加p节点的右子树节点
|
que.push(leftNode->right); // 添加p节点的右子树节点
|
||||||
que.push(rightNode->right); // 添加q节点的右子树节点
|
que.push(rightNode->right); // 添加q节点的右子树节点
|
||||||
}
|
}
|
||||||
|
@ -169,6 +169,7 @@ class Solution {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
Python
|
||||||
```python
|
```python
|
||||||
class Solution:
|
class Solution:
|
||||||
def commonChars(self, words: List[str]) -> List[str]:
|
def commonChars(self, words: List[str]) -> List[str]:
|
||||||
|
Reference in New Issue
Block a user