Maze Count Paths Recursive HARD Recursion 50 XP 0 solved

Problem

Given an N x M maze with obstacles (0=open, 1=wall), count the number of unique paths from top-left to bottom-right, moving only right or down, using recursion.

Input format

Input input.txt

- First line: N M (2 ≀ N,M ≀ 10) - Next N lines: M integers (0 or 1)

Output format

Output output.txt

- Number of unique paths

Example

input
3 3
0 0 0
0 1 0
0 0 0
output
2

Ready to solve this challenge?

Create a free account to write code, submit solutions, and track your progress.

⌨️ Keyboard Shortcuts

Code Editor
Run Code
Ctrl Enter
Submit Code
Ctrl Shift Enter
Format Code
Shift Alt F
Toggle Comment
Ctrl /
Undo
Ctrl Z
Redo
Ctrl Y
Navigation
Global Search
/
Show Shortcuts
?
Close Modal
Esc

πŸ” Interactive Debugger

0 / 0

Analyzing your code...

πŸ“¦ Variables

No variables yet

πŸ“š Call Stack
main() line 1
πŸ“€ Output
We use cookies

Essential cookies are always active. You can choose to enable preference and analytics cookies. Learn more