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.
public static int designerPdfViewer(List<Integer> h, String word) {
int maxHeight = 0;
for (int i = 0; i < word.length(); i++) {
int index = ((int) word.charAt(i)) - 97;
if (maxHeight < h.get(index)) {
maxHeight = h.get(index);
}
}
return maxHeight * word.length();
}
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Designer PDF Viewer
You are viewing a single comment's thread. Return to all comments →
Java Solution: