-
Notifications
You must be signed in to change notification settings - Fork 0
/
Pythagorean_Triplet.cpp
52 lines (46 loc) · 1.03 KB
/
Pythagorean_Triplet.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#include <bits/stdc++.h>
using namespace std;
// } Driver Code Ends
class Solution{
public:
// Function to check if the
// Pythagorean triplet exists or not
bool checkTriplet(int arr[], int n) {
unordered_set<int> uset;
for (int i = 0; i < n; ++i)
uset.insert(arr[i]);
for (int i = 0; i < n; ++i)
{
for (int j = i + 1; j < n; ++j)
{
int val = sqrt(arr[i]*arr[i] + arr[j]*arr[j]);
if(val*val == arr[i]*arr[i] + arr[j]*arr[j])
if(uset.find(val) != uset.end())
return true;
}
}
return false;
}
};
// { Driver Code Starts.
int main() {
int t;
cin >> t;
while (t--) {
int n, i;
cin >> n;
int arr[n];
for (i = 0; i < n; i++) {
cin >> arr[i];
}
Solution ob;
auto ans = ob.checkTriplet(arr, n);
if (ans) {
cout << "Yes\n";
} else {
cout << "No\n";
}
}
return 0;
}
// } Driver Code Ends