摘要:
def solution(X, Y, D): # write your code in Python 3.6 if X==Y: n=0 else: n=(Y-X)//D+1 return n pass 阅读全文
摘要:
当直接使用key对字典取值,如果key不存在会报错 使用dict.get()函数取值,如果key不存则返回空置,消除了报错的bug. 还可使用get('Key','返回值')当取值失败时返回特定的值。 阅读全文
摘要:
def solution(A): # write your code in Python 3.6 for item in A: if A.count(item) == 1 : return item # 只需要找到count为1的唯一一个数字就可以了,其它的都不用管 阅读全文