Advertisement
elena1234

EasterGifts

Oct 16th, 2020
251
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.56 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4.  
  5. namespace EasterGifts
  6. {
  7.     class MainClass
  8.     {
  9.         public static void Main(string[] args)
  10.         {
  11.             List<string> listOfGifts = Console.ReadLine().Split().ToList();
  12.  
  13.             string command = string.Empty;
  14.  
  15.             while ((command = Console.ReadLine()) != "No Money")
  16.             {
  17.                 string[] commandArray = command.Split();
  18.  
  19.                 if (commandArray[0] == "OutOfStock")
  20.                 {
  21.                     string gift = commandArray[1];
  22.                     while (listOfGifts.Exists(x => x == gift))
  23.                     {
  24.                         int indexOfGift = listOfGifts.IndexOf(gift);
  25.                         listOfGifts[indexOfGift] = "None";
  26.                     }
  27.                 }
  28.  
  29.                 else if (commandArray[0] == "Required")
  30.                 {
  31.                     string gift = commandArray[1];
  32.                     int index = int.Parse(commandArray[2]);
  33.                     if (index >= 0 && index <= listOfGifts.Count - 1)
  34.                     {
  35.                         listOfGifts[index] = gift;
  36.                     }
  37.                 }
  38.  
  39.                 else if (commandArray[0] == "JustInCase")
  40.                 {
  41.                     string gift = commandArray[1];
  42.                     listOfGifts[listOfGifts.Count - 1] = gift;
  43.                 }
  44.  
  45.             }
  46.  
  47.             var result = listOfGifts.Where(x => x != "None");
  48.             Console.WriteLine(string.Join(" ",result));
  49.         }
  50.  
  51.        }
  52.  
  53.     }
  54.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement