exercism-go/rectangles
2025-03-09 13:54:13 -04:00
..
.exercism Add new exercises 2025-03-09 13:54:13 -04:00
cases_test.go Add new exercises 2025-03-09 13:54:13 -04:00
go.mod Add new exercises 2025-03-09 13:54:13 -04:00
HELP.md Add new exercises 2025-03-09 13:54:13 -04:00
README.md Add new exercises 2025-03-09 13:54:13 -04:00
rectangles.go Add new exercises 2025-03-09 13:54:13 -04:00
rectangles_test.go Add new exercises 2025-03-09 13:54:13 -04:00

Rectangles

Welcome to Rectangles on Exercism's Go Track. If you need help running the tests or submitting your code, check out HELP.md.

Instructions

Count the rectangles in an ASCII diagram like the one below.

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

The above diagram contains 6 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).

Source

Created by

  • @ferhatelmas

Contributed to by

  • @bitfield
  • @ekingery
  • @hilary
  • @leenipper
  • @sebito91
  • @tleen