Skip to content

Commit 7387862

Browse files
committed
added readme for divide and conquer folder
1 parent c8567ae commit 7387862

File tree

2 files changed

+23
-95
lines changed

2 files changed

+23
-95
lines changed

divide_and_conquer/README.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Divide and Conquer Algorithms Folder
2+
3+
This folder contains implementations of **Divide and Conquer algorithms**, which solve problems by:
4+
5+
1. Dividing the problem into smaller subproblems
6+
2. Solving each subproblem recursively
7+
3. Combining the results to get the final solution
8+
9+
To ensure high-quality contributions, each algorithm should follow the guidelines in `CONTRIBUTING.md`:
10+
11+
- Recursive divide-and-conquer logic
12+
- Descriptive function and class names
13+
- Unit tests demonstrating correctness
14+
- Type hints for all functions
15+
- Clear code organization
16+
17+
18+
### Notes for Contributors
19+
20+
- Focus on **divide-and-conquer implementation**
21+
- Include **unit tests** for typical and edge cases
22+
- Keep **functions and classes well-named and typed**
23+
- Maintain **folder structure and file naming consistency**

neural_network/recurrent_neural_network.py

Lines changed: 0 additions & 95 deletions
This file was deleted.

0 commit comments

Comments
 (0)