Advertisement
Spocoman

02. Common Elements

Jan 21st, 2022
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.09 KB | None | 0 0
  1. using System;
  2.  
  3. namespace CommonElements
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             string[] arrOne = Console.ReadLine().Split();
  10.             string[] arrTwo = Console.ReadLine().Split();
  11.             string output = "";
  12.  
  13.             for (int i = 0; i < arrTwo.Length; i++)
  14.             {
  15.                 for (int j = 0; j < arrOne.Length; j++)
  16.                 {
  17.                     if (arrOne[j] == arrTwo[i])
  18.                     {
  19.                         output += arrTwo[i] + ' ';
  20.                     }
  21.                 }
  22.             }
  23.             Console.WriteLine(output);
  24.         }
  25.     }
  26. }
  27.  
  28. Решение с LINQ:
  29.  
  30. using System;
  31. using System.Linq;
  32.  
  33. namespace CommonElements
  34. {
  35.     class Program
  36.     {
  37.         static void Main(string[] args)
  38.         {
  39.             string[] arrOne = Console.ReadLine().Split();
  40.             string[] arrTwo = Console.ReadLine().Split();
  41.            
  42.             arrTwo = arrTwo.Where(x => arrOne.Contains(x)).ToArray();
  43.  
  44.             Console.WriteLine(string.Join(" ", arrTwo));
  45.         }
  46.     }
  47. }
  48.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement