diff --git a/GeeksForGeeks/May/17-5-24/GFG.java b/GeeksForGeeks/May/17-5-24/GFG.java new file mode 100644 index 0000000..6cf0e66 --- /dev/null +++ b/GeeksForGeeks/May/17-5-24/GFG.java @@ -0,0 +1,68 @@ +//{ Driver Code Starts +import java.io.*; +import java.util.*; + +class IntArray { + public static int[] input(BufferedReader br, int n) throws IOException { + String[] s = br.readLine().trim().split(" "); + int[] a = new int[n]; + for (int i = 0; i < n; i++) a[i] = Integer.parseInt(s[i]); + + return a; + } + + public static void print(int[] a) { + for (int e : a) System.out.print(e + " "); + System.out.println(); + } + + public static void print(ArrayList a) { + for (int e : a) System.out.print(e + " "); + System.out.println(); + } +} + +class GFG { + public static void main(String[] args) throws IOException { + BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); + int t; + t = Integer.parseInt(br.readLine()); + while (t-- > 0) { + + int n; + n = Integer.parseInt(br.readLine()); + + int x; + x = Integer.parseInt(br.readLine()); + + int[] arr = IntArray.input(br, n); + + Solution obj = new Solution(); + int res = obj.findPair(n, x, arr); + + System.out.println(res); + } + } +} + +// } Driver Code Ends + + + +class Solution +{ + public int findPair(int n, int x, int[] arr) + { + // code here + HashSet set = new HashSet<>(); + for(int i=0; i