码迷,mamicode.com
首页 > 其他好文 > 详细

codewar

时间:2017-06-29 20:30:12      阅读:482      评论:0      收藏:0      [点我收藏+]

标签:cti   func   count   判断   code   lower   ams   war   amp   

判断是否有ox

sample:

def xo(s):
s = str.lower(s)
s = list(s)
counto=0
countx=0
for item in s:
if item == ‘o‘:
counto+=1
elif item ==‘x‘:
countx+=1
return counto==countx

别人的

def xo(s): s = s.lower() return s.count(‘x‘) == s.count(‘o‘)

codewar

标签:cti   func   count   判断   code   lower   ams   war   amp   

原文地址:http://www.cnblogs.com/sayHello2World/p/7096056.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!