Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
You can solve it by the applying the following logic. Consider the places A and B:
The number 2 below B forces a mine to be either in A or B. That means, that the 2 blow A is aloready satisfied (it already touches one mine, and now another one from either A or B).
Thus, C can be safely opened:
Now we can apply the same logic to the left side:
By the same logic, C can be opened (because either A or B contains one mine):
Now from this state, the board can be solved easily again.
You should write a function with which you can print the board at any moment with all the information that you need. And don't try to solve this kata in the browser, I think the complexity demands an IDE / Editor with debugging capabilities
I cannot relate to the downvotes, that is a totally valid comment.