会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
挨特·李
学贵有恒!
博客园
首页
新随笔
联系
订阅
管理
Frog jump-Codility lesson3(Count minimal number of jumps from position X to Y.)
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
)
编辑
收藏
举报
刷新页面
返回顶部
公告