Skip to content

Commit 4c0a70c

Browse files
authored
C#
1 parent e7daeda commit 4c0a70c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Insertion Sort/insertion_sort.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
internal static int[] insertion_sort(int[] arr)
1+
internal static int[] InsertionSort(int[] arr)
22
{
33
for(int i = 1; i < arr.Length; ++i)
44
{
@@ -12,4 +12,4 @@ internal static int[] insertion_sort(int[] arr)
1212
}
1313
}
1414
return arr;
15-
}
15+
}

0 commit comments

Comments
 (0)