You are viewing a single comment's thread. Return to all comments →
public static String gameOfThrones(String str) { Map<String, Long> charcount = Arrays. stream(str.split("")). collect(Collectors.groupingBy(Function.identity(), Collectors.counting())); long count = charcount.entrySet().stream().filter(en -> en.getValue() % 2 != 0).count(); return count==0 || count==1 ? "YES" : "NO"; }
Seems like cookies are disabled on this browser, please enable them to open this website
Game of Thrones - I
You are viewing a single comment's thread. Return to all comments →