Advertisement
CR7CR7

aloneNum

Feb 18th, 2023
1,003
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.95 KB | None | 0 0
  1. using System;
  2.  
  3. namespace AloneNumbers
  4. {
  5.     internal class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             string[] input = Console.ReadLine().Split(',');
  10.             int target = int.Parse(Console.ReadLine());
  11.  
  12.             for (int i = 0; i < input.Length; i++)
  13.             {
  14.                 if (i != 0 && i != input.Length - 1 && input[i] != input[i-1] && input[i] != input[i+1])
  15.                 {
  16.                     if (int.Parse(input[i]) == target)
  17.                     {
  18.                         if (int.Parse(input[i - 1]) > int.Parse(input[i+1]))
  19.                         {
  20.                             input[i] = input[i - 1];
  21.                         } else
  22.                         {
  23.                             input[i] = input[i + 1];
  24.                         }
  25.                     }
  26.                 }
  27.             }
  28.  
  29.             Console.WriteLine("[" + string.Join(",", input) + "]");
  30.         }
  31.     }
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement