Advertisement
elena1234

CompanyUsers*

Oct 30th, 2020 (edited)
315
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.49 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4.  
  5. namespace CompanyUsers
  6. {
  7.     class Program
  8.     {
  9.         static void Main(string[] args)
  10.         {
  11.             var companiesAndEmployeesDictionary = new SortedDictionary<string, List<string>>();
  12.             string command = string.Empty;
  13.  
  14.             while ((command = Console.ReadLine()) != "End")
  15.             {
  16.                 string [] commandArray = command.Split(" -> ");
  17.                 string company = commandArray[0];
  18.                 string id = commandArray[1];
  19.  
  20.                 if (companiesAndEmployeesDictionary.ContainsKey(company) == false)
  21.                 {
  22.                     companiesAndEmployeesDictionary[company] = new List<string>();
  23.                     companiesAndEmployeesDictionary[company].Add(id);
  24.                 }
  25.  
  26.                 else
  27.                 {
  28.                     if (companiesAndEmployeesDictionary[company].Contains(id) == false)
  29.                     {
  30.                         companiesAndEmployeesDictionary[company].Add(id);
  31.                     }
  32.                 }
  33.             }
  34.  
  35.             foreach (var kvp in companiesAndEmployeesDictionary)
  36.             {
  37.                 string company = kvp.Key;
  38.                 List<string>listIds = kvp.Value;
  39.                 Console.WriteLine($"{company}");
  40.                 foreach (var id in listIds)
  41.                 {
  42.                     Console.WriteLine($"-- {id}");
  43.                 }
  44.             }
  45.         }
  46.       }
  47.     }
  48.  
  49.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement