1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2024-07-18 02:20:12 +02:00

feat(solutions): add sorting-algorithms/cs/function

This commit is contained in:
Divlo 2021-09-11 19:00:56 +02:00
parent 6638ed59ae
commit b824619dd9
No known key found for this signature in database
GPG Key ID: 6F24DA54DA3967CF
2 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,3 @@
# sorting-algorithms/cs/function
Created by [@Divlo](https://github.com/Divlo) on 11 September 2021.

View File

@ -0,0 +1,29 @@
using System;
using System.Collections.Generic;
namespace Solution
{
class Program
{
static void Main()
{
string line = Console.ReadLine();
List<int> numbers = new List<int>();
while ((line = Console.ReadLine()) != null)
{
numbers.Add(int.Parse(line));
}
int[] result = NativeSort(numbers.ToArray());
foreach (int number in result)
{
Console.WriteLine(number);
}
}
public static int[] NativeSort(int[] array)
{
Array.Sort(array);
return array;
}
}
}