-
Notifications
You must be signed in to change notification settings - Fork 275
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
Maximum subarray sum 1 #579
base: main
Are you sure you want to change the base?
Maximum subarray sum 1 #579
Conversation
3 binary files have been added. They are not needed. Please remove them. |
Also, add tests in: pydatastructs/linear_data_structures/tests/test_algorithms.py and pydatastructs/utils/tests/test_code_quality.py The links above are to my PR which you can use as a reference. |
I removed all the binary file and add testing of algorithm |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #579 +/- ##
=============================================
- Coverage 97.552% 97.354% -0.199%
=============================================
Files 34 36 +2
Lines 4331 4422 +91
=============================================
+ Hits 4225 4305 +80
- Misses 106 117 +11
|
@czgdp1807 I think this PR is good enough to merge. |
I added "maximum_subarray_sum" algorithm in linear_data_structure/algorith.py file
Issue satisfying this condition: #578
Brief description of what is fixed or changed
i added maximum_subarray_sum algorithm in algorithm.py and add this algorithm in docs