Sync zh and zh-hant versions (#1801)

* Sync zh and zh-hant versions.

* Unifying "数据体量" -> "数据规模".
This commit is contained in:
Yudong Jin
2025-08-28 04:51:02 +08:00
committed by GitHub
parent 803c0e09c7
commit 7b320e14fe
12 changed files with 48 additions and 54 deletions
@@ -90,7 +90,7 @@ impl MyList {
panic!("索引越界")
};
let num = self.arr[index];
// 將索引 index 之後的元素都向前移動一位
// 將索引 index 之後的元素都向前移動一位
for j in index..self.size - 1 {
self.arr[j] = self.arr[j + 1];
}