From 7ca85baa7d38b213cea4d37a3afde5ec2f2b819c Mon Sep 17 00:00:00 2001 From: Dhureens Date: Thu, 12 Feb 2026 16:58:10 +0530 Subject: [PATCH] updated course1 --- .idea/.gitignore | 3 +++ .idea/Course.iml | 9 +++++++++ .idea/misc.xml | 6 ++++++ .idea/modules.xml | 8 ++++++++ .idea/vcs.xml | 6 ++++++ Course1 | 4 +++- 6 files changed, 35 insertions(+), 1 deletion(-) create mode 100644 .idea/.gitignore create mode 100644 .idea/Course.iml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 00000000..26d33521 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/.idea/Course.iml b/.idea/Course.iml new file mode 100644 index 00000000..d6ebd480 --- /dev/null +++ b/.idea/Course.iml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 00000000..e6be3f13 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 00000000..25aade76 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 00000000..35eb1ddf --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Course1 b/Course1 index 2fe30ca6..e3b3badf 100644 --- a/Course1 +++ b/Course1 @@ -9,4 +9,6 @@ Pawan Dubey Dynamic Programming Understanding the prolem and implementing a solution which is space and time efficient by structuring it into sub problems. - +Dhureen Shettigar +Divide and Conquer Algorithms +I learned how divide and conquer algorithms break complex problems into smaller subproblems, solve them recursively, and then combine the results efficiently. I understood important techniques like recursion, recurrence relations, and time complexity analysis using Master Theorem.