mirror of
https://github.com/krahets/hello-algo.git
synced 2025-07-23 17:54:27 +08:00
build
This commit is contained in:
@ -48,7 +48,7 @@ There are two ways to initialize arrays depending on the requirements: without i
|
||||
|
||||
```csharp title="array.cs"
|
||||
/* Initialize array */
|
||||
int[] arr = new int[5]; // { 0, 0, 0, 0, 0 }
|
||||
int[] arr = new int[5]; // [ 0, 0, 0, 0, 0 ]
|
||||
int[] nums = [1, 3, 2, 5, 4];
|
||||
```
|
||||
|
||||
|
Reference in New Issue
Block a user