File tree Expand file tree Collapse file tree 2 files changed +23
-95
lines changed
Expand file tree Collapse file tree 2 files changed +23
-95
lines changed Original file line number Diff line number Diff line change 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**
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments