You are viewing a single comment's thread. Return to all comments →
**Simple PYTHON Solution **
def designerPdfViewer(h, word): # Write your code here w = "abcdefghijklmnopqrstuvwxyz" r = 0 for i in word: a = w.index(i) if r < h[a]: r = h[a] return r*(len(word))
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 →
**Simple PYTHON Solution **