Skip to content

Latest commit

 

History

History
54 lines (38 loc) · 509 Bytes

File metadata and controls

54 lines (38 loc) · 509 Bytes

Create a program to count the rectangles in an ASCII diagram like the one below.

   +--+
   |  |
+--+--+
|  |  |
+--+--+

The above diagram contains 5 rectangles:



+-----+
|     |
+-----+
   +--+
   |  |
   |  |
   |  |
   +--+
   +--+
   |  |
   +--+


       
       
   +--+
   |  |
   +--+
       
       
+--+
|  |
+--+

You may assume that the input is always a proper rectangle (i.e. the length of every line equals the length of the first line).