diff --git a/d6/dcd/md__c_o_n_t_r_i_b_u_t_i_n_g.html b/d6/dcd/md__c_o_n_t_r_i_b_u_t_i_n_g.html index 6760a5cd8..0f676a5cb 100644 --- a/d6/dcd/md__c_o_n_t_r_i_b_u_t_i_n_g.html +++ b/d6/dcd/md__c_o_n_t_r_i_b_u_t_i_n_g.html @@ -96,55 +96,55 @@ $(document).ready(function(){initNavTree('d6/dcd/md__c_o_n_t_r_i_b_u_t_i_n_g.htm
Welcome to TheAlgorithms/C-Plus-Plus! Before submitting pull requests, please make sure that you have read the whole guidelines. If you have any doubts about this contribution guide, please open an issue and clearly state your concerns.
+Welcome to TheAlgorithms/C-Plus-Plus! Before submitting pull requests, please make sure that you have read the whole guidelines. If you have any doubts about this contribution guide, please open an issue or ask in our Discord server, and clearly state your concerns.
We are very happy that you consider implementing algorithms and data structures for others! This repository is referred to and used by learners from around the globe. Being one of our contributors, you agree and confirm that:
+Being a contributor at The Algorithms, we request you to follow the points mentioned below:
New implementation New implementation are welcome!
-Improving comments and adding tests to existing algorithms are much appreciated.
-Issues Please avoid opening issues asking to be "assigned” to a particular algorithm. This merely creates unnecessary noise for maintainers. Instead, please submit your implementation in a pull request and it will be evaluated by project maintainers.
+New implementation New implementations are welcome!
+You can add new algorithms or data structures which are not present in the repository or that can improve the old implementations (documentation, improving test cases, removing bugs or in any other resonable sense)
+Issues Please avoid opening issues asking to be "assigned” to a particular algorithm. This merely creates unnecessary noise for maintainers. Instead, please submit your implementation in a pull request, and it will be evaluated by project maintainers.
*.hpp, *.h or *.cpp.struct**, **class** and/or **namespace** keywords*.hpp, *.h or *.cpp.bits/stdc++.h** because this is quite Linux-specific and slows down the compilation process.struct**, **class**, and/or **namespace** keywordsREADME.md along with other changes. First create an issue and then link to that issue in your pull request to suggest specific changes required to README.md.README.md along with other changes. First, create an issue and then link to that issue in your pull request to suggest specific changes required to README.md.test() functions that will invoke the algorithm implementation on random test data with expected output. Use assert() function to confirm that the tests will pass. Requires including the cassert header.main() function.test() functions that will invoke the algorithm implementation on random test data with the expected output. Use the assert() function to confirm that the tests will pass. Requires including the cassert header."_" as separator"_" as a separatormedian_search.cpp already exists in the search folder and you are contributing a new implementation, the filename should be median_search2.cpp and for a third implementation, median_search3.cpp.median_search.cpp already exists in the search folder, and you are contributing a new implementation, the filename should be median_search2.cpp and for a third implementation, median_search3.cpp.clang-tidy and clang-format after every push (not a commit).clang-tidy and clang-format after every push (not a commit).git pull in your local clone if these actions made many changes in order to avoid merge conflicts.git pull in your local clone if these actions made many changes to avoid merge conflicts.Most importantly,