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.
staticbooleanisAnagram(Stringa,Stringb){// Complete the functionbooleanrs=false;a=a.toLowerCase();b=b.toLowerCase();Strings=a.substring(0,1);if(a.length()==b.length()){a=a.replaceAll(s,"");b=b.replaceAll(s,"");if(a.length()>0){rs=isAnagram(a,b);}else{rs=true;}}returnrs;}
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 →
using replaceAll & recursive