lots of exercises in java... from https://github.com/exercism/java
Tendai Mudyiwa 324c61c444 Update rectangles version file and add test. Closes #1372 (#1394) 6 jaren geleden
..
.meta Update rectangles version file and add test. Closes #1372 (#1394) 6 jaren geleden
src Update rectangles version file and add test. Closes #1372 (#1394) 6 jaren geleden
README.md Inline the exercise README insert (#1290) 6 jaren geleden
build.gradle Format build.gradle files 7 jaren geleden

README.md

Rectangles

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).

Running the tests

You can run all the tests for an exercise by entering

$ gradle test

in your terminal.

Submitting Incomplete Solutions

It's possible to submit an incomplete solution so you can see how others have completed the exercise.