Spocoman

04. Mixed up Lists

Feb 5th, 2022 (edited)
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.47 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4.  
  5. namespace MixedUpLists
  6. {
  7.     class Program
  8.     {
  9.         static void Main(string[] args)
  10.         {
  11.             List<int> list1 = Console.ReadLine().Split().Select(int.Parse).ToList();
  12.             List<int> list2 = Console.ReadLine().Split().Select(int.Parse).Reverse().ToList();
  13.  
  14.             List<int> mixed = new List<int>();
  15.             List<int> border = new List<int>();
  16.  
  17.             if (list1.Count > list2.Count)
  18.             {
  19.                 for (int i = 0; i < list2.Count; i++)
  20.                 {
  21.                     mixed.Add(list1[i]);
  22.                     mixed.Add(list2[i]);
  23.                 }
  24.                 mixed.Sort();
  25.                 border.Add(list1[list1.Count - 2]);
  26.                 border.Add(list1[list1.Count - 1]);
  27.             }
  28.             else
  29.             {
  30.                 for (int i = 0; i < list1.Count; i++)
  31.                 {
  32.                     mixed.Add(list1[i]);
  33.                     mixed.Add(list2[i]);
  34.                 }
  35.                 mixed.Sort();
  36.                 border.Add(list2[list2.Count - 2]);
  37.                 border.Add(list2[list2.Count - 1]);
  38.             }
  39.  
  40.             for (int i = 0; i < mixed.Count; i++)
  41.             {
  42.                 border.Sort();
  43.                 if (mixed[i] > border[0] && mixed[i] < border[1])
  44.                 {
  45.                     Console.Write(mixed[i] + " ");
  46.                 }
  47.             }
  48.         }
  49.     }
  50. }
  51.  
Add Comment
Please, Sign In to add comment