mirror of
https://github.com/krahets/hello-algo.git
synced 2026-02-03 10:53:35 +08:00
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.
This commit is contained in:
@@ -100,6 +100,7 @@
|
||||
=== "C"
|
||||
|
||||
```c title="array.c"
|
||||
/* 初始化数组 */
|
||||
int arr[5] = { 0 }; // { 0, 0, 0, 0, 0 }
|
||||
int nums[5] = { 1, 3, 2, 5, 4 };
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user