摘要: 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 阅读全文
posted @ 2020-08-03 10:58 挨特·李 阅读(163) 评论(0) 推荐(0) 编辑
摘要: 当直接使用key对字典取值,如果key不存在会报错 使用dict.get()函数取值,如果key不存则返回空置,消除了报错的bug. 还可使用get('Key','返回值')当取值失败时返回特定的值。 阅读全文
posted @ 2020-08-03 08:59 挨特·李 阅读(349) 评论(0) 推荐(0) 编辑
摘要: def solution(A): # write your code in Python 3.6 for item in A: if A.count(item) == 1 : return item # 只需要找到count为1的唯一一个数字就可以了,其它的都不用管 阅读全文
posted @ 2020-08-03 08:41 挨特·李 阅读(137) 评论(0) 推荐(0) 编辑
摘要: gitee推送到远程仓库时提示错误remote: Incorrect username or password ( access token )fatal: Authentication failed for 'https://gitee.com/***/***.git/' 输错一次密码之后再也不弹 阅读全文
posted @ 2020-07-31 21:13 挨特·李 阅读(953) 评论(0) 推荐(0) 编辑