Medium
Meta
Gated Maze Pathfinder AI-Assisted Coding Interview
Repair a flawed maze traversal and implement shortest-path search where directional gate cells constrain legal movement.
1. Problem Statement
Inspect the maze code for defects, then implement the shortest legal path through directional gates. Explain your approach before asking the AI assistant for code.
2. Live Coding Format
Work in the provided coding workspace while explaining your decisions to the live interviewer. Validation may use inline tests, examples, comments, or a verbal walkthrough.
3. Key Focus Areas
- 1Bug identification
- 2Algorithm selection
- 3Gate semantics
- 4Assistant output review
- 5Complexity reasoning
4. What Strong Candidates Should Demonstrate
- ✓Inspect existing code before asking an assistant to extend it.
- ✓Select BFS for an unweighted shortest-path problem and explain why.
- ✓Validate directional movement constraints with concrete traces.
Want interactive feedback?
Practice this problem in the live coding workspace while the interviewer probes your clarification, implementation, trade-offs, and validation.
Start InterviewCore Concepts
Breadth-First SearchDebuggingGraph TraversalAI-Assisted Verification
