Return to Project-GC

Welcome to Project-GC Q&A. Ask questions and get answers from other Project-GC users.

If you get a good answer, click the checkbox on the left to select it as the best answer.

Upvote answers or questions that have helped you.

If you don't get clear answers, edit your question to make it clearer.

0 votes
166 views
Gibt es für diesen einen Checker
in Miscellaneous by Susentrude (240 points)

1 Answer

0 votes
Ich glaub es gibt noch nicht so einen Checker. Aber es ist auch nicht leicht einer für diesen Cache zu entwicklen. Dauert vielleicht viele Stunden. Mann muß "Schiffe Versenken" implementieren. Und ich glaube es ist einfacher um es zu Hause am Tisch zu machen.

----

In English:

I don't think any checker exists for this cache. And it won't be easy to develop one either. The problem is not that easy and it would take many hours. Basically, one has to implement the game "Battleship". It probably is easier to do by hand when looking at your DT-matrix. But, that said, it is a nice programming adventure.

The challenge requires to place several ships of different sizes/lengths (4x2, 3x3, 2x4,and 1x5)  on your DT-matrix, such that:
1. Ships can only be placed horizontal or vertical, not diagonal
2. No ship can touch another (not even diagonal)
3. Empty spots in your DT-matrix (0's) are islands and no ship can go there, nor in the spots adjacent to the island in the matrix
4. Repdigits (11,22,666,etc.) are considered buoys and ship cannot go there (they can go to adjacent spots though)
5. The two-length-ships need to go on spots with at least 1 find, the three-length-ships on spots with at least 5 finds,  the four-lenght-ships on spots with at least 15 finds, and the five-length ship on spots with at least 20 finds.
by swirlynail (3.0k points)
...