Update array.md,fix md formatting errors

Fix md formatting errors
This commit is contained in:
Ming 2022-12-14 11:22:14 +08:00 committed by GitHub
parent 92aa96d8f7
commit d61196de3a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -641,7 +641,7 @@ elementAddr = firtstElementAddr + elementLength * elementIndex
=== "C#"
```csharp title="array.cs"
/* 在数组中查找指定元素 */
/* 在数组中查找指定元素 */
int Find(int[] nums, int target)
{
for (int i = 0; i < nums.Length; i++)