Advertisement
Spocoman

03. House Party

Feb 1st, 2022
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.29 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4.  
  5. namespace HouseParty
  6. {
  7.     class Program
  8.     {
  9.         static void Main(string[] args)
  10.         {
  11.             int num = int.Parse(Console.ReadLine());
  12.             List<string> guest = new List<string>();
  13.  
  14.             for (int i = 0; i < num; i++)
  15.             {
  16.                 List<string> command = new List<string>(Console.ReadLine().Split());
  17.  
  18.                 if (guest.Contains(command[0]))
  19.                 {
  20.                     if (command.Count == 3)
  21.                     {
  22.                         Console.WriteLine($"{command[0]} is already in the list!");
  23.                     }
  24.                     else
  25.                     {
  26.                         guest.Remove(command[0]);
  27.                     }
  28.                 }
  29.                 else
  30.                 {
  31.                     if (command.Count == 3)
  32.                     {
  33.                         guest.Add(command[0]);
  34.                     }
  35.                     else
  36.                     {
  37.                         Console.WriteLine($"{command[0]} is not in the list!");
  38.                     }
  39.                 }
  40.             }
  41.             foreach (var item in guest)
  42.             {
  43.                 Console.WriteLine(item);
  44.             }
  45.         }
  46.     }
  47. }
  48.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement