Advertisement
Spocoman

07. String Explosion

Apr 16th, 2023
587
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.79 KB | None | 0 0
  1. using System;
  2. using System.Linq;
  3. using System.Collections.Generic;
  4. using System.Text;
  5.  
  6. namespace StringExplosion
  7. {
  8.  
  9.     class Program
  10.     {
  11.         static void Main()
  12.         {
  13.             var sb = new StringBuilder(Console.ReadLine());
  14.             int count = 0;
  15.  
  16.             for (int i = 0; i < sb.Length; i++)
  17.             {
  18.                 if (sb[i] == '>')
  19.                 {
  20.                     continue;
  21.                 }
  22.  
  23.                 if (char.IsDigit(sb[i]))
  24.                 {
  25.                     count += sb[i] - 48;
  26.                 }
  27.  
  28.                 if (count != 0)
  29.                 {
  30.                     sb.Remove(i, 1);
  31.                     count--;
  32.                     i--;
  33.                 }
  34.             }
  35.  
  36.             Console.WriteLine(sb);
  37.         }
  38.     }
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement