• + 0 comments
    def designerPdfViewer(h, word):
        # Write your code here
        max_h = max([h[ord(char) - ord('a')] for char in word])
        
        return max_h * len(word)