comments | difficulty | edit_url | rating | source | tags | |||||
---|---|---|---|---|---|---|---|---|---|---|
true |
Easy |
1225 |
Weekly Contest 175 Q1 |
|
Given an array arr
of integers, check if there exist two indices i
and j
such that :
i != j
0 <= i, j < arr.length
arr[i] == 2 * arr[j]
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:
2 <= arr.length <= 500
-103 <= arr[i] <= 103
We define a hash table
Traverse the array true
. Otherwise, add
If no element satisfying the condition is found after the traversal, return false
.
The time complexity is
class Solution:
def checkIfExist(self, arr: List[int]) -> bool:
s = set()
for x in arr:
if x * 2 in s or (x % 2 == 0 and x // 2 in s):
return True
s.add(x)
return False
class Solution {
public boolean checkIfExist(int[] arr) {
Set<Integer> s = new HashSet<>();
for (int x : arr) {
if (s.contains(x * 2) || ((x % 2 == 0 && s.contains(x / 2)))) {
return true;
}
s.add(x);
}
return false;
}
}
class Solution {
public:
bool checkIfExist(vector<int>& arr) {
unordered_set<int> s;
for (int x : arr) {
if (s.contains(x * 2) || (x % 2 == 0 && s.contains(x / 2))) {
return true;
}
s.insert(x);
}
return false;
}
};
func checkIfExist(arr []int) bool {
s := map[int]bool{}
for _, x := range arr {
if s[x*2] || (x%2 == 0 && s[x/2]) {
return true
}
s[x] = true
}
return false
}
function checkIfExist(arr: number[]): boolean {
const s: Set<number> = new Set();
for (const x of arr) {
if (s.has(x * 2) || (x % 2 === 0 && s.has((x / 2) | 0))) {
return true;
}
s.add(x);
}
return false;
}