elena1234

Last 3 Consecutive Equal Strings

Oct 1st, 2020 (edited)
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.84 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4.  
  5. namespace Last3ConsecutiveEqualStrings
  6. {
  7.     class MainClass
  8.     {
  9.         public static void Main(string[] args)
  10.         {
  11.             List<string> text = Console.ReadLine().Split().ToList();
  12.             List<string> concat = new List<string>();
  13.          
  14.             for (int i=text.Count-1; i>=2 ; i--)
  15.             {
  16.                 if (text[i] == text[i - 1] && text[i-1] == text[i -2])
  17.                 {
  18.                     concat.Add(text[i]);
  19.                     concat.Add(text[i - 1]);
  20.                     concat.Add(text[i - 2]);
  21.                     break;
  22.                 }
  23.                 else
  24.                 {
  25.                     continue;
  26.                 }
  27.             }
  28.  
  29.             Console.WriteLine(string.Join(" ",concat));
  30.         }
  31.     }
  32. }
  33.  
Add Comment
Please, Sign In to add comment