Advertisement
Spocoman

03. Inventory

Nov 4th, 2023
819
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.69 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3.  
  4. namespace Inventory
  5. {
  6.     class Program
  7.     {
  8.         static void Main(string[] args)
  9.         {
  10.             var collectedItems = Console.ReadLine().Split(", ").ToList();
  11.  
  12.             string commands;
  13.  
  14.             while ((commands = Console.ReadLine()) != "Craft!")
  15.             {
  16.                 var tokens = commands.Split(" - ");
  17.                 string command = tokens[0], item = tokens[1];
  18.                 if (command == "Collect")
  19.                 {
  20.                     if (!collectedItems.Contains(item))
  21.                     {
  22.                         collectedItems.Add(item);
  23.                     }
  24.                 }
  25.                 else if (command == "Drop")
  26.                 {
  27.                     if (collectedItems.Contains(item))
  28.                     {
  29.                         collectedItems.Remove(item);
  30.                     }
  31.                 }
  32.                 else if (command == "Combine Items")
  33.                 {
  34.                     var oldNewItems = item.Split(':');
  35.                     string oldItem = oldNewItems[0], newItem = oldNewItems[1];
  36.                     if (collectedItems.Contains(oldItem))
  37.                     {
  38.                         collectedItems.Insert(collectedItems.IndexOf(oldItem) + 1, newItem);
  39.                     }
  40.                 }
  41.                 else
  42.                 {
  43.                     if (collectedItems.Contains(item))
  44.                     {
  45.                         collectedItems.Remove(item);
  46.                         collectedItems.Add(item);
  47.                     }
  48.                 }
  49.             }
  50.             Console.WriteLine(String.Join(", ", collectedItems));
  51.         }
  52.     }
  53. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement