mirror of
https://github.com/krahets/hello-algo.git
synced 2025-07-07 23:04:55 +08:00
Bug fixes and improvements (#1318)
* Sync zh and zh-hant versions * Update en/README.md * Add a Q&A for chapter of introduction * Update the callout headers * Sync zh ang zh-hant versions * Bug fixes
This commit is contained in:
@ -22,7 +22,7 @@ class ArrayBinaryTree:
|
||||
"""串列容量"""
|
||||
return len(self._tree)
|
||||
|
||||
def val(self, i: int) -> int:
|
||||
def val(self, i: int) -> int | None:
|
||||
"""獲取索引為 i 節點的值"""
|
||||
# 若索引越界,則返回 None ,代表空位
|
||||
if i < 0 or i >= self.size():
|
||||
|
Reference in New Issue
Block a user