TheAlgorithms / Rust

All Algorithms implemented in Rust
MIT License
22.93k stars 2.24k forks source link

Implement Knight Tour algorithm using Backtracking. #695

Closed sozelfist closed 8 months ago

sozelfist commented 8 months ago

Description

This PR implements the Knight's Tour algorithm in Rust, along with unit tests and documentation updates.

Type of change

Checklist :heavy_check_mark:

Additional Notes :pencil2:

This PR includes comprehensive unit tests for the Knight's Tour algorithm, covering various edge cases and scenarios. Additionally, the algorithm is well-documented to help users understand its functionality and usage.

codecov-commenter commented 8 months ago

Codecov Report

All modified and coverable lines are covered by tests :white_check_mark:

Project coverage is 94.53%. Comparing base (d5157e6) to head (d601549).

Additional details and impacted files ```diff @@ Coverage Diff @@ ## master #695 +/- ## ========================================== + Coverage 94.51% 94.53% +0.01% ========================================== Files 293 294 +1 Lines 21854 21919 +65 ========================================== + Hits 20656 20721 +65 Misses 1198 1198 ```

:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.

sozelfist commented 8 months ago

Let's have a final look @vil02