Advertisement
elena1234

BalancedBrackets

Sep 21st, 2020 (edited)
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.83 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3.  
  4. namespace balancedBreckets
  5. {
  6.     class MainClass
  7.     {
  8.         public static void Main(string[] args)
  9.         {
  10.             int numberOfLines = int.Parse(Console.ReadLine());
  11.             List < string > listOfOpenedBrackets= new List<string>();
  12.             List<string> listOfClosedBrackets= new List<string>();
  13.            
  14.             for (int i = 0; i < numberOfLines; i++)
  15.             {
  16.                 string input = Console.ReadLine();
  17.                 if (input == ")"&& listOfOpenedBrackets.Count==0)
  18.                 {
  19.                     Console.WriteLine("UNBALANCED");
  20.                     return;
  21.                 }
  22.  
  23.                else if (input == "(")
  24.                 {
  25.  
  26.                     listOfOpenedBrackets.Add(input);
  27.                     if (listOfOpenedBrackets.Count == 2)
  28.                     {
  29.                         Console.WriteLine("UNBALANCED");
  30.                         return;
  31.                     }  
  32.                 }
  33.  
  34.                 else if (input == ")")
  35.                 {
  36.                     listOfClosedBrackets.Add(input);
  37.                     if (listOfClosedBrackets.Count == 2)
  38.                     {
  39.                         Console.WriteLine("UNBALANCED");
  40.                         return;
  41.                     }
  42.                 }
  43.  
  44.                 if (listOfOpenedBrackets.Count==1 && listOfClosedBrackets.Count==1)
  45.                 {
  46.                     listOfOpenedBrackets.Clear();
  47.                     listOfClosedBrackets.Clear();
  48.                 }
  49.             }
  50.  
  51.             if (listOfOpenedBrackets.Count==listOfClosedBrackets.Count)
  52.             {
  53.                 Console.WriteLine("BALANCED");
  54.             }
  55.             else
  56.             {
  57.                 Console.WriteLine("UNBALANCED");
  58.             }
  59.  
  60.         }
  61.     }
  62. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement