Skip to content

Commit d5187e6

Browse files
committed
Added PR template for README
1 parent e65b127 commit d5187e6

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

.github/PULL_REQUEST_TEMPLATE/algorithm-implementation.md renamed to .github/pull_request_template.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,29 @@ assignees: ''
77

88
---
99

10+
### For PRs related to algo implementation
11+
1012
This PR implements the code for <algo name> in <language name> referred in issue #<issue number>
1113

12-
I have read the contributing guidelines in [CONTRIBUTING.md](https://github.com/deutranium/Algorithms/blob/master/CONTRIBUTING.md) and have ensured the follwing:
14+
I have read the contributing guidelines in [CONTRIBUTING.md](https://github.com/deutranium/Algorithms/blob/master/CONTRIBUTING.md) and have ensured the following:
1315

1416
- [ ] My code is placed in the required directory as outlined in [CONTRIBUTING.md](https://github.com/deutranium/Algorithms/blob/master/CONTRIBUTING.md)
1517
- [ ] My code file is named according to [CONTRIBUTING.md](https://github.com/deutranium/Algorithms/blob/master/CONTRIBUTING.md)
1618
- [ ] Variables, classes, functions etc. follow camel case as outlined in [CONTRIBUTING.md](https://github.com/deutranium/Algorithms/blob/master/CONTRIBUTING.md)
1719
- [ ] My code hasn't been implemented or claimed by someone else and I have checked the present [issues](https://github.com/deutranium/Algorithms/issues) and [PRs](https://github.com/deutranium/Algorithms/pulls) for the same
1820
- [ ] **My code is well commented**
1921
- [ ] If my code is the first implementation of <algo name>, I have added the link to this directory in [README.md](https://github.com/deutranium/Algorithms/blob/master/Readme.md)
22+
- [ ] I have **not** copied my code from anywhere
23+
24+
### For PRs related to creating algo READMEs
25+
26+
This PR creates/modifies the README for <algo name>
27+
28+
I have read the contributing guidelines in [CONTRIBUTING.md](https://github.com/deutranium/Algorithms/blob/master/CONTRIBUTING.md) and have ensured the following:
29+
30+
- [ ] Algo name (as heading)
31+
- [ ] A small description about algo
32+
- [ ] Time Complexity (Worst, Average, Best case)
33+
- [ ] Space Complexity (Worst, Average, Best case)
34+
- [ ] Logic and Pseudocode
35+
- [ ] Instructions for running code

0 commit comments

Comments
 (0)