From e5f7bf7f6707560a8a2725e1a796e1a2c2f5e55e Mon Sep 17 00:00:00 2001 From: Pankaj Kumar Bind <73558583+pankaj-bind@users.noreply.github.com> Date: Sun, 27 Oct 2024 22:51:47 +0530 Subject: [PATCH] Revert "Add the algorithm "Find the Duplicate number"" --- .../program.c => Find Duplicate/Program.c} | 0 .../{Find the Duplicate number => Find Duplicate}/Readme.md | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename Searching Algorithms/{Find the Duplicate number/program.c => Find Duplicate/Program.c} (100%) rename Searching Algorithms/{Find the Duplicate number => Find Duplicate}/Readme.md (98%) diff --git a/Searching Algorithms/Find the Duplicate number/program.c b/Searching Algorithms/Find Duplicate/Program.c similarity index 100% rename from Searching Algorithms/Find the Duplicate number/program.c rename to Searching Algorithms/Find Duplicate/Program.c diff --git a/Searching Algorithms/Find the Duplicate number/Readme.md b/Searching Algorithms/Find Duplicate/Readme.md similarity index 98% rename from Searching Algorithms/Find the Duplicate number/Readme.md rename to Searching Algorithms/Find Duplicate/Readme.md index bf01c7e5..92727d42 100644 --- a/Searching Algorithms/Find the Duplicate number/Readme.md +++ b/Searching Algorithms/Find Duplicate/Readme.md @@ -1,4 +1,4 @@ -### Find Duplicate +###Find Duplicate ##Problem Statement Given an array A of size N + 1. Each element in array A is between 1 and N. Write a program to find one of the duplicates in array A. If there are multiple answers, then print any.