https://zerojudge.tw/ShowProblem?problemid=a466
X
直接暴力吧 :)
先用長度判斷,題目說長度固定,只會有寫錯字的可能
長度只要等於五就輸出 3
我原本寫 if len(s) == 5: 因為範例測資出錯,我猜是 theee 後面還有一格空格
所以我改成 if len(s) >= 5: 就過了
再來一跟二的判斷,至多錯一個字,那就把三個字倆倆排列組合出所有可能~
n = int(input())
for _ in range(n):
s = input()
if len(s) >= 5:
print(3)
else:
if (s[0] == "o" and s[1] == "n") or (s[0] == "o" and s[2] == "e") or (s[1] == "n" and s[2] == "e"):
print(1)
else:
print(2)