Advertisement
dragonbs

03. Dictionary

Apr 2nd, 2023
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.92 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3.  
  4. namespace Dictionary
  5. {
  6.     class Program
  7.     {
  8.         static void Main(string[] args)
  9.         {
  10.             string[] pairsOgi = Console.ReadLine().Split(" | ");
  11.             var wordsFromOgi = new Dictionary<string, List<string>>();
  12.  
  13.             foreach (var pair in pairsOgi)
  14.             {
  15.                 string[] infoForYourWord = pair.Split(": ");
  16.                 string wordFromOgi = infoForYourWord[0];
  17.                 string definitionFromOgi = infoForYourWord[1];
  18.                 if (wordsFromOgi.ContainsKey(wordFromOgi))
  19.                 {
  20.                     wordsFromOgi[wordFromOgi].Add(definitionFromOgi);
  21.                     continue;
  22.                 }
  23.                 List<string> definitions = new List<string>();
  24.                 definitions.Add(definitionFromOgi);
  25.                 wordsFromOgi.Add(wordFromOgi, definitions);
  26.             }
  27.             string[] anotherWords = Console.ReadLine().Split(" | ");
  28.             string command = Console.ReadLine();
  29.  
  30.             if (command == "Hand Over")
  31.             {
  32.                 Console.WriteLine(string.Join(" ", wordsFromOgi.Keys));
  33.             }
  34.             else if (command == "Test")
  35.             {
  36.                 List<string> wordsForTest = new List<string>();
  37.                 foreach (var word in anotherWords)
  38.                 {
  39.                     if (wordsFromOgi.ContainsKey(word))
  40.                     {
  41.                         wordsForTest.Add(word);
  42.                     }
  43.                 }
  44.                 foreach (var word in wordsForTest)
  45.                 {
  46.                     var definitions = wordsFromOgi[word];
  47.                     Console.WriteLine($"{word}:");
  48.                     foreach (var definition in definitions)
  49.                     {
  50.                         Console.WriteLine($" -{definition}");
  51.                     }
  52.                 }
  53.             }
  54.         }
  55.     }
  56. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement