t,n=map(int,input().split())
l=[]
b=[]
for i in range(len(str(t))):
if t%10!=n:
l.append(t%10)
t//=10
l.reverse()
b=l[::-1]
if len(l)==1:
print("Yes")
else:
if l==b:
print("Yes")
else:
print("No")
第13 14個測資錯,但找不到問題
t,n=map(int,input().split())
l=[]
b=[]
for i in range(len(str(t))):
if t%10!=n:
l.append(t%10)
t//=10
l.reverse()
b=l[::-1]
if len(l)==1:
print("Yes")
else:
if l==b:
print("Yes")
else:
print("No")第13 14個測資錯,但找不到問題
t有可能開頭是0
t,n=map(int,input().split())
l=[]
b=[]
for i in range(len(str(t))):
if t%10!=n:
l.append(t%10)
t//=10
l.reverse()
b=l[::-1]
if len(l)==1:
print("Yes")
else:
if l==b:
print("Yes")
else:
print("No")第13 14個測資錯,但找不到問題
t有可能開頭是0
多謝