5. Top Integers Exercise: Arrays - C# Fundamentals - май 2020
Има ли по удачна функция за тази задача от All() за бързо решение
using System;
using System.Collections.Generic;
using System.Linq;
namespace dey_of_week
{
class Program
{
static void Main(string[] args)
{
List<int> arr = Console.ReadLine().Split().Select(int.Parse).ToList();
while (arr.Count != 0)
{
if (arr.All(x => x <= arr[0]))
{
int element = arr[0];
arr.RemoveAt(0);
if (arr.All(x => x < element))
{
Console.Write(element + " ");
}
}
else
{
arr.RemoveAt(0);
}
}
}
}
}