博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Code Signal_练习题_growingPlant
阅读量:6187 次
发布时间:2019-06-21

本文共 686 字,大约阅读时间需要 2 分钟。

Each day a plant is growing by upSpeed meters. Each night that plant's height decreases by downSpeed meters due to the lack of sun heat. Initially, plant is 0 meters tall. We plant the seed at the beginning of a day. We want to know when the height of the plant will reach a certain level.

Example

For upSpeed = 100downSpeed = 10, and desiredHeight = 910, the output should be

growingPlant(upSpeed, downSpeed, desiredHeight) = 10.

 

我的解答:

import mathdef growingPlant(upSpeed, downSpeed, desiredHeight):    if upSpeed > desiredHeight:        return 1    return math.ceil((desiredHeight - upSpeed) / (upSpeed - downSpeed)) + 1

 

 

一样滴
膜拜大佬

 

转载于:https://www.cnblogs.com/BlameKidd/p/9494881.html

你可能感兴趣的文章
intellj 入门使用小结 project structure
查看>>
Linux学习篇之软件安装
查看>>
Linux 安装命令 rpm 跟 yum
查看>>
微信小程序 - app.js文件
查看>>
linux下配置squid代理服务器
查看>>
cocoapod 更新失败
查看>>
linux 运维系统检测命令(持续更新)
查看>>
FreeBSD基础学习
查看>>
Android查看KeyStore信息
查看>>
在老男孩生活的感悟
查看>>
信息安全:防泄密软件设计构想与选型建议
查看>>
mybatis学习七 单多表关联
查看>>
AGG第三十三课 line_profile_aa 参数分析说明
查看>>
FTP原理和修改FTP默认端口
查看>>
零基础过五门CPA的一些经验及教训分享
查看>>
Windows服务的手动添加和删除方法
查看>>
计算机基本知识(7002)---RS485智能仪表
查看>>
加快菜单显示速度
查看>>
iphone中使用NSoperation实现图片异步加载
查看>>
AndroidAnnnotations注入框架的工作原理(二)
查看>>