Why is the brute-force approach less ideal here?
Practice this question from Word Search - Grid Backtracking Pattern Practice Quiz, with options and an explanation.
Question
Why is the brute-force approach less ideal here?
Option A — Correct answer
It explores paths without pruning mismatch early.
Option B
It always avoids invalid states
Option C
It uses no recursion
Option D
It only works for sorted arrays
Explanation
It explores paths without pruning mismatch early.