-
Notifications
You must be signed in to change notification settings - Fork 303
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Word Search in a 2D Grid #1347
Word Search in a 2D Grid #1347
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🎉 Thank you for your contribution! Your pull request has been submitted successfully. A maintainer will review it as soon as possible. We appreciate your support in making this project better
not assigned |
@pankaj-bind Sir What is the issue? |
You have only assigned this issue to me, how come it is not assigned as per you ? |
You should always mention your issue number in your PR, I have already made clear instruction for that. Now you have to remove .exe file. |
ce2086f
to
ebec912
Compare
@pankaj-bind Sir completed ! |
Fixes #1238
Word Search in 2D Grid Using Backtracking
This program determines if a given word can be found in a 2D grid of letters by connecting adjacent cells horizontally or vertically. It utilizes recursive backtracking to explore possible paths while ensuring each cell is used only once. The output is a boolean value indicating whether the word exists in the grid.