We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
if you are coding in java 15 then it is helpful for you
ublic class Solution {
public static void main(String[] args) {
/* Enter your code here. Read input from STDIN. Print output to STDOUT. Your class should be named Solution. */
Scanner scanner = new Scanner(System.in);
String a = scanner.nextLine().toLowerCase();
String b = scanner.nextLine().toLowerCase();
scanner.close();
System.out.println(isAnagram(a, b) ? "Anagrams" : "Not Anagrams");
}
private static boolean isAnagram(String a, String b) {
String[] aArr = a.split("");
String[] bArr = b.split("");
Arrays.sort(aArr);
Arrays.sort(bArr);
return String.join("", aArr).equals(String.join("", bArr));
}
}
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Java Anagrams
You are viewing a single comment's thread. Return to all comments →
if you are coding in java 15 then it is helpful for you ublic class Solution {
}