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.
publicstaticintgemstones(List<String>arr){// Write your code hereintcount=0;Stringalphabet="abcdefghijklmnopqrstuvwxyz";for(inti=0;i<alphabet.length();i++){booleanflag=true;for(Stringstr:arr){if(!str.contains(String.valueOf(alphabet.charAt(i)))){flag=false;}}if(flag){count++;}}returncount;}
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Gemstones
You are viewing a single comment's thread. Return to all comments →
Java 15