Advertisement
Spocoman

02. Change List

Feb 1st, 2022
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.23 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4.  
  5. namespace ChangeList
  6. {
  7.     class Program
  8.     {
  9.         static void Main(string[] args)
  10.         {
  11.             List<int> num = Console.ReadLine()
  12.                 .Split(" ", StringSplitOptions.RemoveEmptyEntries)
  13.                 .Select(int.Parse)
  14.                 .ToList();
  15.  
  16.             string[] command = Console.ReadLine()
  17.                 .ToUpper()
  18.                 .Split()
  19.                 .ToArray();
  20.  
  21.             while (command[0] != "END")
  22.             {
  23.                 switch (command[0])
  24.                 {
  25.                     case "DELETE":
  26.                         for (int i = 0; i < num.Count; i++)
  27.                         {
  28.                             num.Remove(int.Parse(command[1]));
  29.                         }
  30.                         break;
  31.  
  32.                     case "INSERT":
  33.                         num.Insert(int.Parse(command[2]) , int.Parse(command[1]));
  34.                         break;
  35.                 }
  36.                  command = Console.ReadLine()
  37.                     .ToUpper()
  38.                     .Split()
  39.                     .ToArray();
  40.             }
  41.             Console.WriteLine(string.Join(" ", num));
  42.         }
  43.     }
  44. }
  45.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement