合肥生活安徽新闻合肥交通合肥房产生活服务合肥教育合肥招聘合肥旅游文化艺术合肥美食合肥地图合肥社保合肥医院企业服务合肥法律

COMP9021代做、代写python设计程序

时间:2024-07-20  来源:合肥网hfw.cc  作者:hfw.cc 我要纠错



COMP**21 Principles of Programming 
Term 2, 2024 
Coding Quiz 5 
Worth 4 marks and due Week 8 Thursday @ 9pm 
 
Description 
You are provided with a stub in which you need to insert your code where indicated without doing any 
changes to the existing code to complete the task. Although it is not needed for this quiz, you may import 
any extra module that is already installed in Ed if you wish. 
The program randomly generates a grid with 0s and 1s, whose dimension is controlled by user input, as 
well as the density of 1s in the grid, and finds out for a given step_number ≥ 1 and a given step_size ≥ 2, 
the number of stairs of step_number many steps, with all steps of size step_size. 
A stair of 1 step of size 2 is of the form: 
1 1 
 1 1 
A stair of 2 steps of size 2 is of the form 
1 1 
 1 1 
 1 1 
A stair of 1 step of size 3 is of the form 
1 1 1 
 1 
 1 1 1 
A stair of 2 steps of size 3 is of the form 
1 1 1 
 1 
 1 1 1 
 1 
 1 1 1 
 2 
 
 
The output lists the number of stairs from smallest step sizes to largest step sizes, and for a given step size, 
from stairs with the smallest number of steps to stairs with the largest number of stairs. 
Your task is to implement the function called stairs_in_grid(). 
You may possibly define other functions. 
The provided stub and the outputs of the sample test cases explain the task to be performed. 
 
Marking 
 stairs_in_grid() 4 marks 
 ------------------------------------ 
 Total 4 marks 
 
 
Due Date and Submission 
Quiz 5 is due Week 8 Thursday 18 July 2024 @ 9.00pm (Sydney time). 
Note that late submission with 5% penalty per day is allowed up to 3 days from the due date, that is, any 
late submission after Week 8 Sunday 21 July 2024 @ 9pm will be discarded. 
Make sure not to change the filename quiz_5.py while submitting by clicking on [Mark] button in Ed. 
It is your responsibility to check that your submission did go through properly using Submissions link in Ed 
otherwise your mark will be zero for Quiz 5. 
 
 3 
 
 
Test Cases 
 
$ python quiz_5.py 
Enter three positive integers: 0 1 2 
Here is the grid that has been generated: 
 1 1 
 0 1 
 
 
$ python quiz_5.py 
Enter three positive integers: 0 1 3 
Here is the grid that has been generated: 
 1 1 0 
 1 1 1 
 1 1 1 
 
For steps of size 2, we have: 
 2 stairs with 1 step 
 
 
$ python quiz_5.py 
Enter three positive integers: 0 3 9 
Here is the grid that has been generated: 
 1 1 0 1 1 1 1 1 1 
 1 1 1 1 0 1 1 1 0 
 0 1 1 0 1 1 1 1 1 
 1 1 0 0 0 1 0 1 1 
 1 1 0 1 1 1 1 1 0 
 0 1 1 0 1 1 0 1 1 
 1 1 0 1 1 1 1 1 1 
 1 0 1 1 0 0 1 1 0 
 0 1 1 1 1 1 1 1 1 
 
For steps of size 2, we have: 
 5 stairs with 1 step 
 1 stair with 2 steps 
 1 stair with 3 steps 
 1 stair with 4 steps 
 
For steps of size 3, we have: 
 4 stairs with 1 step 
 
 4 
 
 
$ python quiz_5.py 
Enter three positive integers: 0 3 7 
Here is the grid that has been generated: 
 1 1 0 1 1 1 1 
 1 1 1 1 1 1 0 
 1 1 1 0 0 1 1 
 0 1 1 1 1 1 1 
 1 0 0 0 1 0 1 
 1 1 1 0 1 1 1 
 1 1 0 0 1 1 0 
 
For steps of size 2, we have: 
 2 stairs with 1 step 
 2 stairs with 2 steps 
 
For steps of size 3, we have: 
 1 stair with 2 steps 
 
 
$ python quiz_5.py 
Enter three positive integers: 0 4 8 
Here is the grid that has been generated: 
 1 1 0 1 1 1 1 1 
 1 1 1 1 1 1 1 1 
 0 1 1 1 1 1 1 0 
 0 1 1 1 0 1 1 1 
 1 1 1 1 1 1 1 0 
 1 0 0 1 0 1 1 1 
 1 1 0 1 1 1 1 1 
 1 1 0 0 1 1 1 0 
 
For steps of size 2, we have: 
 7 stairs with 1 step 
 3 stairs with 2 steps 
 2 stairs with 3 steps 
 
For steps of size 3, we have: 
 2 stairs with 1 step 
 1 stair with 2 steps 
 
For steps of size 4, we have: 
 1 stair with 1 step 
 
 5 
 
 
$ python quiz_5.py 
Enter three positive integers: 0 5 9 
Here is the grid that has been generated: 
 1 1 0 1 1 1 1 1 1 
 1 1 1 1 1 1 1 0 1 
 1 1 1 1 1 1 0 1 0 
 1 1 1 1 0 1 1 1 1 
 1 1 1 1 1 1 1 0 1 
 0 0 1 1 1 1 1 0 1 
 1 1 1 1 1 1 0 1 1 
 1 1 1 1 1 0 0 1 1 
 1 0 1 1 1 1 0 1 1 
 
For steps of size 2, we have: 
 4 stairs with 1 step 
 5 stairs with 2 steps 
 1 stair with 3 steps 
 2 stairs with 4 steps 
 
For steps of size 3, we have: 
 9 stairs with 1 step 
 
For steps of size 4, we have: 
 2 stairs with 1 step 
 
 
 6 
 
 
Some Test Cases Explained 
 
$ python quiz_5.py 
Enter three positive integers: 0 1 3 
Here is the grid that has been generated: 
 1 1 0 
 1 1 1 
 1 1 1 
 
For steps of size 2, we have: 
 2 stairs with 1 step 
$ python quiz_5.py 
Enter three positive integers: 0 3 9 
Here is the grid that has been generated: 

 
请加QQ:99515681  邮箱:99515681@qq.com   WX:codinghelp




 

扫一扫在手机打开当前页
  • 上一篇:菲律宾落地签和旅游签长什么样 图片样式介绍
  • 下一篇:COMP9414代做、代写Python程序设计
  • ·COMP9021代做、代写Python设计程序
  • 合肥生活资讯

    合肥图文信息
    流体仿真外包多少钱_专业CFD分析代做_友商科技CAE仿真
    流体仿真外包多少钱_专业CFD分析代做_友商科
    CAE仿真分析代做公司 CFD流体仿真服务 管路流场仿真外包
    CAE仿真分析代做公司 CFD流体仿真服务 管路
    流体CFD仿真分析_代做咨询服务_Fluent 仿真技术服务
    流体CFD仿真分析_代做咨询服务_Fluent 仿真
    结构仿真分析服务_CAE代做咨询外包_刚强度疲劳振动
    结构仿真分析服务_CAE代做咨询外包_刚强度疲
    流体cfd仿真分析服务 7类仿真分析代做服务40个行业
    流体cfd仿真分析服务 7类仿真分析代做服务4
    超全面的拼多多电商运营技巧,多多开团助手,多多出评软件徽y1698861
    超全面的拼多多电商运营技巧,多多开团助手
    CAE有限元仿真分析团队,2026仿真代做咨询服务平台
    CAE有限元仿真分析团队,2026仿真代做咨询服
    钉钉签到打卡位置修改神器,2026怎么修改定位在范围内
    钉钉签到打卡位置修改神器,2026怎么修改定
  • 短信验证码 宠物饲养 十大卫浴品牌排行 suno 豆包网页版入口 wps 目录网 排行网

    关于我们 | 打赏支持 | 广告服务 | 联系我们 | 网站地图 | 免责声明 | 帮助中心 | 友情链接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥网 版权所有
    ICP备06013414号-3 公安备 42010502001045