摘要: 第一道:没做出来 第二道:AC 第三道:有思路,没时间 阅读全文
posted @ 2019-09-05 22:09 lililili—— 阅读(381) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/z13653662052/article/details/100175482 1.字串 def substr(s): arr = set() arr1 = set() for i in s: if i in arr1: pass else: arr1.ad 阅读全文
posted @ 2019-09-05 21:55 lililili—— 阅读(157) 评论(0) 推荐(0)
摘要: 1.最大公约数 def maxyushu(a,b): a1,b1 = a,b res = a1%b1 while res!=0: a1 = b1 b1 = res res = a1%b1 return str(b1) if __name__ == "__main__": a, b = map(int 阅读全文
posted @ 2019-09-05 21:46 lililili—— 阅读(201) 评论(0) 推荐(0)
摘要: 作者:lengxia链接:https://www.nowcoder.com/discuss/210571来源:牛客网 旷视凉面 lengxia 编辑于 今天 19.7.24 19:20:24 app内打开 赞 0 | 收藏 5 | 回复3 | 浏览626 旷视凉面 APP内打开053 旷视凉面 le 阅读全文
posted @ 2019-09-05 21:30 lililili—— 阅读(265) 评论(0) 推荐(0)