-
Notifications
You must be signed in to change notification settings - Fork 1.6k
new numeric algorithms with new tests. #103
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
Merged
Merged
Conversation
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
Codecov Report
@@ Coverage Diff @@
## master #103 +/- ##
==========================================
+ Coverage 88.43% 88.52% +0.09%
==========================================
Files 33 35 +2
Lines 1478 1490 +12
Branches 238 241 +3
==========================================
+ Hits 1307 1319 +12
Misses 156 156
Partials 15 15
Continue to review full report at Codecov.
|
siriak
requested changes
Jul 27, 2019
siriak
requested changes
Jul 27, 2019
Co-Authored-By: Andrii Siriak <siryaka@gmail.com>
siriak
approved these changes
Jul 28, 2019
siriak
added a commit
that referenced
this pull request
Sep 1, 2019
* new numeric algorithms with new tests. * mod on binomial * included suggestions. * Update Algorithms/Numeric/Factorial.cs Co-Authored-By: Andrii Siriak <siryaka@gmail.com>
siriak
pushed a commit
that referenced
this pull request
Sep 2, 2019
* A* Improvements: Priority Queue N Dimensional Vector Traversal Costs Different Search Heuristics(A*, Dijkstra, Greedy) For some reason the Test Projects were set to .net 2.2(which does not work with my sdk) NO OTHER CHANGES TO TEST PROJECTS * Some Formatting improvements. Part of the code restructured because codacy is not liking my way to code things ;) * (Hopefully) Fixed the 4 introduced issues. * Fixing problems with code quality. * Add TreatWarningsAsErrors (#102) * Fix code style * Fix fields' names * Fix name violations * Add TreatWarningsAsErrors * Fine-tune XML documentation * Added new tests for Gauss-Jordan elimination. (#100) * Added new tests for Gauss-Jordan elimination. * changes based on sugestions. * Factorial and combinations. (#103) * new numeric algorithms with new tests. * mod on binomial * included suggestions. * Update Algorithms/Numeric/Factorial.cs Co-Authored-By: Andrii Siriak <siryaka@gmail.com> * Added new tests for linked lists. (#104) * Added new tests for linked lists. * mod comment on linked list. * Mods on bit-array data struct and added new tests. (#105) * mods on bit-array data struct and added new tests. * added string builder. * changed switch representation on bit-array. * Move LinkedList to SinglyLinkedList (#106) * Move LinkedList to SinglyLinkedList * Fix GetElementByIndex method * Change exception type * improved vigenere encoder coverage (#107) * improved vigenere encoder coverage * removed commented code * Add static modifier where possible (#108) * Fix broken links in README and remove unused test (#109) * Fix errors * Remove duplicated file * Fix errors * Cleanup test * Remove console sample * Cleanup * Update .editorconfig
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.
For factorial and binomial coefficient calculations.