From dacae67fab7cdf56484bd8b8f7fcbaa96b06d3ef Mon Sep 17 00:00:00 2001 From: Salam2004 Date: Sat, 12 Jul 2025 18:32:16 +0530 Subject: [PATCH] Shaik Abdul Salam - Course 1 - Divide and Conquer Algorithms --- Course1 | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Course1 b/Course1 index 2fe30ca6..a9a5777a 100644 --- a/Course1 +++ b/Course1 @@ -10,3 +10,7 @@ Dynamic Programming Understanding the prolem and implementing a solution which is space and time efficient by structuring it into sub problems. +Abdul Salam Shaik +Divide and Conquer +Breaking down a complex problem into smaller independent subproblems, solving each subproblem recursively, and combining their solutions to solve the original problem. +This approach improves efficiency by tackling easier parts first and merging results systematically.