Skip to content

Commit 8213fe4

Browse files
Create 0088-merge-sorted-array.cs
1 parent 3128895 commit 8213fe4

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

csharp/0088-merge-sorted-array.cs

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
public class Solution
2+
{
3+
public void Merge(int[] nums1, int m, int[] nums2, int n)
4+
{
5+
var index1 = m - 1;
6+
var index2 = n - 1;
7+
var targetIndex = m + n - 1;
8+
9+
for (; targetIndex >= 0; targetIndex--)
10+
{
11+
var useNums1 = (index2 < 0) || (index1 >= 0 && nums1[index1] >= nums2[index2]);
12+
13+
if (useNums1)
14+
{
15+
nums1[targetIndex] = nums1[index1];
16+
index1 -= 1;
17+
}
18+
else
19+
{
20+
nums1[targetIndex] = nums2[index2];
21+
index2 -= 1;
22+
}
23+
}
24+
}
25+
}

0 commit comments

Comments
 (0)