From ecf6809a8b3ad7eba578216c67a2017220b9db89 Mon Sep 17 00:00:00 2001 From: Rajaram Date: Sat, 17 Dec 2022 16:39:14 +0530 Subject: [PATCH] Create README - LeetHub --- check-if-n-and-its-double-exist/README.md | 31 +++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 check-if-n-and-its-double-exist/README.md diff --git a/check-if-n-and-its-double-exist/README.md b/check-if-n-and-its-double-exist/README.md new file mode 100644 index 0000000..f10502a --- /dev/null +++ b/check-if-n-and-its-double-exist/README.md @@ -0,0 +1,31 @@ +

 Check If N and Its Double Exist


Given an array arr of integers, check if there exist two indices i and j such that :

+ + + +

 

+

Example 1:

+ +
Input: arr = [10,2,5,3]
+Output: true
+Explanation: For i = 0 and j = 2, arr[i] == 10 == 2 * 5 == 2 * arr[j]
+
+ +

Example 2:

+ +
Input: arr = [3,1,7,11]
+Output: false
+Explanation: There is no i and j that satisfy the conditions.
+
+ +

 

+

Constraints:

+ + +
\ No newline at end of file