elena1234

ListOfPredicate

Jan 27th, 2021 (edited)
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.94 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4.  
  5. namespace ListOfPredicates // 66/100 with Memory Limits, but surely fine solution
  6. {
  7.     class Program
  8.     {
  9.         static void Main(string[] args)
  10.         {
  11.             int range = int.Parse(Console.ReadLine());
  12.             int[] dividers = Console.ReadLine().Split().Select(int.Parse).ToArray();
  13.             Func<int, int[]> funcCreateArray = x =>
  14.             {
  15.                 var list = new List<int>();
  16.                 for (int i = 1; i <= x; i++)
  17.                 {
  18.                     list.Add(i);
  19.                 }
  20.  
  21.                 return list.ToArray();
  22.             };
  23.  
  24.             var newArray = funcCreateArray(range);
  25.             foreach (var num in dividers)
  26.             {
  27.                newArray= newArray.Where(x => x % num == 0).ToArray();
  28.             }
  29.            
  30.             Console.WriteLine(string.Join(" ", newArray));
  31.         }
  32.     }
  33. }
  34.  
Add Comment
Please, Sign In to add comment