請讓我知道如何bug修復這些代碼。我嘗試並糾正了很多問題,但我對解決方案還有10多個額外的東西!項目歐拉問題17 Python的
如果數字1至5用字寫出:1,2,3,4,5,則總共使用3 + 3 + 5 + 4 + 4 = 19個字母。
如果所有從1到1000(包括1000)的數字都用文字寫出來,會用多少個字母?
注意:不要指望空格或連字符。例如,342(三百四十二)包含23個字母,115(一百一十五)包含20個字母。在編寫數字時使用「和」符合英國的用法。
我的解決方案
sd={0:0,1: 3, 2: 3, 3: 5, 4: 4, 5: 4, 6: 3, 7: 5, 8: 5, 9: 4}
dd1={10:3,11:6,12:6,13:8,14:8,15:7,16:7,17:9,18:9,19:8}
dd2={2:6,3:6,4:5,5:5,6:5,7:7,8:6,9:6}
td= {0: 10, 1: 13, 2: 13, 3: 15, 4: 14, 5: 14, 6: 13, 7: 15, 8: 15, 9: 14}
cd={0:0,1: 3, 2: 3, 3: 5, 4: 4, 5: 4, 6: 3, 7: 5, 8: 5, 9: 4,10:3,11:6,12:6,13:8,14:8,15:7,16:7,17:9,18:9,19:8}
def cw(n) :
if n/10 == 0 : # If the number is less than 10 execute this section
return sd[n%10]
elif n/100 == 0 : # If the number is less than 100 execute this section
if n<20 :
return(dd1[n]) # Directly map to dd1
else :
return(dd2[n/10]+sd[n%10]) # If the number is > 20 do a construction
elif n/1000==0 :
if n%100==0:
return sd[n/100] + 7 # If the number is multiples of 100 give assuming single digit and 7 for hundred
elif n%100 < 20 :
return td[n/100] + cd[n%100] # If 3 digit numbers not more than *20 , then direct mapping
else :
return td[n/100] + dd2[(n%100)/10] + sd[n%10]
count = 0
for i in range(1,1000) :
count = count + cw(i)
print count + 11
我得到21134,答案是...(劇透:請下一行懸停在查看)
非常惱人!
呵呵,沒想到我會用擾流板的語法在計算器上:) – 2011-04-11 11:27:50
有這樣的評論:「#如果數量少於10執行本條中,」是有點沒用。 – 2012-10-06 20:39:30
這本來是更安全了明確寫的字,用'len'計數的單詞數。這樣你可以通過拼寫檢查來驗證你的輸入。 例如: 'ten_e0 = {1: 「一」,2: 「二」,3: 「三」,4: 「四」,5: 「五」,6: 「六」,7: 「七」 ,8:「八」,9:「九」}' – squater 2014-09-01 16:10:14