-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Addition of multiple_longest_common_subsequence #861
base: master
Are you sure you want to change the base?
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #861 +/- ##
==========================================
+ Coverage 95.49% 95.53% +0.04%
==========================================
Files 316 318 +2
Lines 22919 23161 +242
==========================================
+ Hits 21887 22128 +241
- Misses 1032 1033 +1 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Hello, I might need help with this pull request, especially Surely I am not supposed to fix the 500+ errors already present before, right ? Thank you |
@Gaspardcode: Try updating your branch. There were some new warnings introduced, but it should work now (cf. #871). |
Hello, I did indeed fixed it by simply pulling, thank you |
Description
To whom it may concern,
this pull request aims at introducing an algorithm to find the longest common subsequence among multiple sequences.
Finding a solution other than brute force is not really intuitive. I advise to look at the first comments of this thread.
The pull request implements a method based on heuristic, as described in the following research paper.
Thank you for considering this work.
Type of change
Checklist:
cargo clippy --all -- -D warnings
just before my last commit and fixed any issue that was found.Note: I mean I did only delete the issues related to my pull request
cargo fmt
just before my last commit.cargo test
just before my last commit and all tests passed.mod.rs
file within its own folder, and in any parent folder(s).DIRECTORY.md
with the correct link.COUNTRIBUTING.md
and my code follows its guidelines.