|
| 1 | +# Bonus Problems |
| 2 | + |
| 3 | +A real coder should not be satisfied by doing only one problem daily, rather he/she should keep coding as much as possible. So, here I ([@MadhavBahlMD](https://github.com/MadhavBahlMD)) am adding some more problems that you can practise 😃 |
| 4 | + |
| 5 | +Also, these problems have been taking form various sources, so ig you think you own any of the given problems, just send me an email at theleanprogrammer@gmail.com and I will be more than happy to give proper credits 😊 |
| 6 | + |
| 7 | +#### Want to contribute? |
| 8 | + |
| 9 | +The file structure is as follows |
| 10 | + |
| 11 | +``` |
| 12 | +├───BONUS |
| 13 | + │ README.md |
| 14 | + ├───Algorithms |
| 15 | + │ README.md |
| 16 | + ├───Arrays |
| 17 | + │ README.md |
| 18 | + ├───Graphs |
| 19 | + │ README.md |
| 20 | + ├───LinkedLists |
| 21 | + │ README.md |
| 22 | + ├───Queues |
| 23 | + │ README.md |
| 24 | + ├───Recursion |
| 25 | + │ README.md |
| 26 | + ├───Stacks |
| 27 | + │ README.md |
| 28 | + ├───Strings |
| 29 | + │ README.md |
| 30 | + └───Trees |
| 31 | + README.md |
| 32 | +``` |
| 33 | + |
| 34 | +In the main `README.md` of [dailycodebase repository](https://github.com/CodeToExpress/dailycodebase), there are links to the README of `BONUS` directory, and the `README.md` of sub topics |
| 35 | +In the `README.md` of `BONUS` directory, there is the list of all topics and under that there are all questions |
| 36 | +In the `README.md` of any topic directory, say `Arrays` there is a README which contains all questions of that topic along with the link to the `README.md` of the directory containing the question |
| 37 | +The `README.md` of directory containing the question must contain all the information about the question with some examples and the solution, and a little writeup about the algorithm used. |
| 38 | + |
| 39 | +**Before contributing any question, make sure that this structure is followed properly** |
| 40 | + |
| 41 | +#### NOTE |
| 42 | + |
| 43 | +In case you just want to contribute a question and not code, there is no need to do so many things, just open an issue with the topic **Problem Submission** and the problem in the comments. I'll add it myself, and will give you proper credits 😃 |
| 44 | + |
| 45 | +## Practise Problems 😁 |
| 46 | + |
| 47 | +### [1. Strings](./Strings/README.md) |
| 48 | + |
| 49 | +- To be added |
| 50 | + |
| 51 | +### [2. Recursion](./Recursion/README.md) |
| 52 | + |
| 53 | +- To be added |
| 54 | + |
| 55 | +### [3. Array](./Arrays/README.md) |
| 56 | + |
| 57 | +- To be added |
| 58 | + |
| 59 | +### [4. Algorithms](./Algorithms/README.md) |
| 60 | + |
| 61 | +- To be added |
| 62 | + |
| 63 | +### [5. Stacks](./Stacks/README.md) |
| 64 | + |
| 65 | +- To be added |
| 66 | + |
| 67 | +### [6. Queues](./Queues/README.md) |
| 68 | + |
| 69 | +- To be added |
| 70 | + |
| 71 | +### [7. Linked Lists](./LinkedLists/README.md) |
| 72 | + |
| 73 | +- To be added |
| 74 | + |
| 75 | +### [8. Trees](./Trees/README.md) |
| 76 | + |
| 77 | +- To be added |
| 78 | + |
| 79 | +### [9. Graphs](./Graphs/README.md) |
| 80 | + |
| 81 | +- To be added |
0 commit comments