diff --git a/GeeksForGeeks/June/01-6-24/GFG.java b/GeeksForGeeks/June/01-6-24/GFG.java new file mode 100644 index 0000000..2317986 --- /dev/null +++ b/GeeksForGeeks/June/01-6-24/GFG.java @@ -0,0 +1,48 @@ +//{ Driver Code Starts +import java.io.*; +import java.util.*; + +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) { + + String s; + s = br.readLine(); + + Solution obj = new Solution(); + String res = obj.oddEven(s); + + System.out.println(res); + } + } +} + +// } Driver Code Ends + + + +class Solution +{ + public static String oddEven(String s) + { + // code here + int a[] = new int[27]; + for(int i=0; i