我有第一個工程部分,但第二個不not.Here是問題 Question with which i am having the issue.Has sample input and output無法解決這一問題
這個問題了,我試圖讓2 solutions.The一些問題的代碼以下是其中我寫
number=int(input())
S=input()
w=list(S[:])
w_count=0
other_count=0
v_count=0
vv_count=0
i=0
while(i<(len(w))):
try:
if w[i]=='w':
w_count+=1
elif w[i]=='v' and w[i+1]=='v':
vv_count+=1
i+=1
else:
other_count+=1
except IndexError:
pass
i+=1
max_length=w_count*2+other_count+v_count
min_length=0
min_length=w_count+other_count+vv_count
print(min_length,max_length)
其他邏輯已經用的幫助下用於環路中實現的2碼爲哪些3測試用例傳遞
for value in range(len(w)):
try:
if w[value]=='w':
w_count+=1
elif w[value]=='v' and w[value+1]=='v':
vv_count+=1
else:
other_count+=1
except IndexError:
pass
問題尋求幫助調試(**「爲什麼不是這個代碼的工作? 「**)必須包含所需的行爲,*特定的問題或錯誤*,以及*在問題本身**中重現**所需的最短代碼。沒有**明確問題陳述**的問題對其他讀者沒有用處。請參閱:[如何創建最小,完整和可驗證示例](http://stackoverflow.com/help/mcve)。 – MattDMo