Update array.md & hash_map.md (#827)

* Update array.md

- Update array.md
- Add comments to maintain consistency with implementations in other languages.

* Update hash_map.md

- Update hash_map.md
- Update the filename to correspond with the filenames in the "codes/go" directory.
pull/759/head^2
Nepenthe 1 year ago committed by GitHub
parent dbf6c1c68d
commit d86cb0ee5d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -100,6 +100,7 @@
=== "C" === "C"
```c title="array.c" ```c title="array.c"
/* 初始化数组 */
int arr[5] = { 0 }; // { 0, 0, 0, 0, 0 } int arr[5] = { 0 }; // { 0, 0, 0, 0, 0 }
int nums[5] = { 1, 3, 2, 5, 4 }; int nums[5] = { 1, 3, 2, 5, 4 };
``` ```

@ -120,7 +120,7 @@
=== "Go" === "Go"
```go title="hash_map.go" ```go title="hash_map_test.go"
/* 初始化哈希表 */ /* 初始化哈希表 */
hmap := make(map[int]string) hmap := make(map[int]string)

Loading…
Cancel
Save