Ruby 判断字符串是否对称

清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>

#分两种情况

#第一种是奇数位字符串

def method str
	p str == str.reverse ? "Yes" : "No"
end

#另一种是偶数位字符串

def method str
	p (str == str.reverse and str.length%2 == 0) ? "Yes" : "No"
end