mirror of
https://github.com/krahets/hello-algo.git
synced 2025-11-02 04:31:55 +08:00
Update a comment in array_hash_map
This commit is contained in:
@ -20,7 +20,7 @@ class ArrayHashMap {
|
||||
private var buckets: [Entry?] = []
|
||||
|
||||
init() {
|
||||
// 初始化一个长度为 100 的桶(数组)
|
||||
// 初始化数组,包含 100 个桶
|
||||
for _ in 0 ..< 100 {
|
||||
buckets.append(nil)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user