Welcome to the staging ground for new communities! Each proposal has a description in the "Descriptions" category and a body of questions and answers in "Incubator Q&A". You can ask questions (and get answers, we hope!) right away, and start new proposals.
Are you here to participate in a specific proposal? Click on the proposal tag (with the dark outline) to see only posts about that proposal and not all of the others that are in progress. Tags are at the bottom of each post.
Post History
Simple strategy A greedy strategy works. Place X in squares 1, 2. (1, 2) excludes 3. Available: (4, 5, 6, 7, 8, 9, 10, 11, 12, 13). Place X in square 4. (1, 4) excludes 7. (2, 4) excludes 6....
#1: Initial revision
<details><summary>Simple strategy</summary> A greedy strategy works. * Place X in squares 1, 2. * (1, 2) excludes 3. Available: (4, 5, 6, 7, 8, 9, 10, 11, 12, 13). * Place X in square 4. * (1, 4) excludes 7. (2, 4) excludes 6. Available: (5, 8, 9, 10, 11, 12, 13). * Place X in square 5. * (1, 5) excludes 9. (2, 5) excludes 8. (4, 5) excludes 6. Available: (10, 11, 12, 13). * Place X in square 10. This generates no exclusions because squares 15, 16, 18, 19 don't exist. Available: (11, 12, 13). * Place X in square 11. (10, 11) excludes 12, but all other squares which would be excluded don't exist. Available: (13). * Place X in square 13. </details>
