Created
March 30, 2025 13:08
-
-
Save anadim/d2f65c8d3a460e0c88bb9d1d6fbc15e1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I am sharing an image of a maze, and I need your help to solve it visually, step-by-step, by generating images for each incremental step. Your goal is to find a valid path from the Red Arrow (starting point) to the Green Arrow (ending point). | |
### Instructions for solving the maze: | |
1. **Start Point**: | |
- Your path must begin exactly at the Red Arrow location. | |
2. **End Point**: | |
- Your objective is to reach precisely the location of the Green Arrow. | |
3. **Visual Path Representation**: | |
- Clearly mark the path you generate with a **red line**. | |
- This red line must pass exactly through the middle of the white corridors, following the path indicated by black dots. | |
- Clearly indicate your current position at each step with a **large blue circle**. | |
4. **Step-by-Step Generation**: | |
- Each step must move exactly one position at a time (only one step away in any direction; no jumps or skips allowed). | |
- Each step should be small, localized, and visually clear. | |
- Every new step (t+1) should directly and clearly continue from the last **VALID** step (t). | |
- You are allowed to backtrack if necessary by moving the blue circle along the existing red path. | |
5. **Important Constraints**: | |
- **Walls cannot be crossed or jumped over**. | |
- The red path **must never intersect, overlap, or touch any walls**. | |
- You must not alter the maze structure or omit walls. | |
- Absolutely no new "holes" or modifications to the existing maze layout should occur. | |
### Feedback System: | |
- **VALID Step**: I will explicitly mark your step as **VALID** if it correctly follows all rules above. | |
- **INVALID Step**: I will mark a step as **INVALID** if: | |
- The red path intersects or crosses any walls. | |
- You omit, change, or rearrange any walls or parts of the maze. | |
- You create new holes or modify the maze in any way. | |
- The step does not directly and visually follow from the last VALID step. | |
- The step moves more than one position away from the previous position. | |
### Before beginning, please reflect on these instructions and confirm you clearly understand all constraints and conditions listed. | |
When you’re ready and fully understand these guidelines, produce **Step 1**, clearly showing your initial incremental step from the Red Arrow position. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment