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

相同数字

时间:2015-06-24 19:22:36      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:python水题

stopword = ‘‘
str = ‘‘
for line in iter(raw_input,stopword):
    str += line + ‘\n‘
L = str.strip().split(‘\n‘)
L_set = set(L)
if len(L) == len(L_set):
    print ‘NO‘
else:
    print ‘YES‘

给你一个整数列表L,判断L中是否存在相同的数字,
若存在,输出YES,否则输出NO。

本文出自 “Complex” 博客,谢绝转载!

相同数字

标签:python水题

原文地址:http://10458754.blog.51cto.com/10448754/1665069

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