• + 0 comments

    Python3

    ` def designerPdfViewer(h, word): # Write your code here

    return max([h[(ord(c) - ord('a'))] for c in word]) * len(word)
    

    `