Add implementation for Open Knight Tour#547
Merged
Merged
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #547 +/- ##
==========================================
+ Coverage 96.68% 96.70% +0.01%
==========================================
Files 280 281 +1
Lines 11059 11123 +64
Branches 1577 1590 +13
==========================================
+ Hits 10692 10756 +64
Misses 232 232
Partials 135 135 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
There was a problem hiding this comment.
Pull Request Overview
This PR adds an implementation of the Open Knight Tour problem using depth-first search with backtracking. The algorithm finds a sequence of knight moves that visits every square on an n×n chessboard exactly once.
Key changes:
- Implements backtracking algorithm to solve the Knight Tour problem for square boards
- Adds comprehensive test suite covering edge cases, invalid inputs, and solution validation
- Updates documentation to include the new Knight Tour algorithm
Reviewed Changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| README.md | Adds Knight Tour entry to the algorithms index |
| Algorithms/Problems/KnightTour/OpenKnightTour.cs | Implements the Open Knight Tour algorithm using DFS with backtracking |
| Algorithms.Tests/Problems/KnightTour/OpenKnightTourTests.cs | Provides comprehensive test coverage including validation helpers and edge cases |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.