99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

合肥生活安徽新聞合肥交通合肥房產生活服務合肥教育合肥招聘合肥旅游文化藝術合肥美食合肥地圖合肥社保合肥醫院企業服務合肥法律

代做COMP9021、python程序設計代寫
代做COMP9021、python程序設計代寫

時間:2024-11-18  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



1 General matters
1.1 Aim
Assignment 2 COMP**21, Trimester 3, 2024
The purpose of the assignment is to:
• develop your problem solving skills;
• design and implement the solutions to problems in the form of medium sized Python programs; • practice the design and implementation of search techniques, with recursion as a good approach; • design and implement an interface based on the desired behaviour of an application program;
• possibly practice using the re and numpy modules.
1.2 Submission
Your program will be stored in a file named crossword.py. After you have developed and tested your program, upload it using Ed (unless you worked directly in Ed). Assignments can be submitted more than once; the last version is marked. Your assignment is due by November 18, 10:00am.
1.3 Assessment
The assignment is worth 13 marks. It is going to be tested against a number of inputs. For each test, the automarking script will let your program run for 30 seconds.
Assignments can be submitted up to 5 days after the deadline. The maximum mark obtainable reduces by 5% per full late day, for up to 5 days. Thus if students A and B hand in assignments worth 12 and 11, both two days late (that is, more than 24 hours late and no more than 48 hours late), then the maximum mark obtainable is 11.7, so A gets min(11.7, 12) = 11.7 and B gets min(11.7, 11) = 11.
The outputs of your programs should be exactly as indicated. 1.4 Reminder on plagiarism policy
You are permitted, indeed encouraged, to discuss ways to solve the assignment with other people. Such discussions must be in terms of algorithms, not code. But you must implement the solution on your own. Submissions are routinely scanned for similarities that occur when students copy and modify other people’s work, or work very closely together on a single implementation. Severe penalties apply.
1

2 Solving crosswords 2.1 General description
The aim is to fill in a crossword grid, in which some letters might have been placed already, in one of two ways:
• being given the collection of all missing entries in an underlying solution to the crossword, find a way to place those entries in the grid (in one of possibly more than one way);
• being given a collection of words, find a way to select and place some of those words in the grid so that it solves the puzzle (in one of possibly more than one way).
We will consider grids with at least 2 rows and at least 2 columns, and such that any cell is next to another cell, though maybe not next to both horizontal and vertical cells; so any cell is part of a word of at least 2 letters, and by word we mean a word with at least 2 letters.
A presentation of a grid provided as input will be captured in a .tex file, and a presentation of a solved puzzle will also be captured in a .tex file; those .tex files can be given as arguments to pdflatex to generate .pdf files that display grids in a pleasing graphical form, but play no role in the assignment.
The code will be all about the design and implementation of a Crossword class. An object of class Crossword will provide an interface to work with a particular grid and collections of words of the kind just described; it will have methods for both problems previously described, and also benefit from the implementation of the __str__() special method to display some information about the grid and the words it possibly contains already.
partial_grid_3.tex is an example of a .tex file for a grid in which letters have been placed already, that can be considered as an input file, and here is the .pdf file created by pdflatex from this .tex file. solved_partial_grid_3.tex is an example of a .tex file for a solution to that grid, that can be
considered as an output file, and here is the .pdf file created by pdflatex from this .tex file. The contents of all input .tex files will be of the following form:
\documentclass{standalone}
\usepackage{pas-crosswords}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
...
\end{tikzpicture}
\end{document}
For input files, what lies between \begin{tikzpicture} and \end{tikzpicture} is of the following form:
\begin{crossgrid}[h=_, v=_]
\blackcases{_/_, ..., _/_}
\words[v]{_/_/_, ..., _/_/_}
\words[h]{_/_/_, ..., _/_/_}
\end{crossgrid}
Each of
• \blackcases{_/_, ..., _/_},
• \words[v]{_/_/_, ..., _/_/_} and • \words[h]{_/_/_, ..., _/_/_}
2

is optional and can appear in any order.
• In \begin{crossgrid}[h=_, v=_], the first and second occurrences of _ denote integers at least equal to 2, that represent the horizontal dimension and the vertical dimension of the grid, respec- tively; let h-dim and v-dim denote those dimensions, respectively.
• In \blackcases{_/_, ..., _/_}, each occurrence of _/_ denotes a slash-separated pair of integers (i,j) with 1 ≤ i ≤ h-dim and 1 ≤ j ≤ v-dim, to denote that there is a black square at the intersection of the ith column and the jth row. If \blackcases{_/_, ..., _/_} is present then there is at least one such pair, consecutive pairs being separated by a comma.
• In \words[v]{_/_/_, ..., _/_/_}, each occurrence of _/_/_ denotes a slash-separated triple (i,j,w) where i and j are integers with 1 ≤ i ≤ h-dim and 1 ≤ j ≤ v-dim, and where w is a word of at least 2 letters that is vertically placed in the grid and whose first letter is at the intersec- tion of the ith column and the jth row. If \words[v]{_/_/_, ..., _/_/_} is present then there is at least one such triple, consecutive triples being separated by a comma.
• In \words[h]{_/_/_, ..., _/_/_}, each occurrence of _/_/_ denotes a slash-separated triple (i,j,w) where i and j are integers with 1 ≤ i ≤ h-dim and 1 ≤ j ≤ v-dim, and where w is a word of at least 2 letters that is horizontally placed in the grid and whose first letter is at the intersection of the ith column and the jth row. If \words[h]{_/_/_, ..., _/_/_} is present then there is at least one such triple, consecutive triples being separated by a comma.
You can assume that the input is valid: no word or black square will start or extend beyond the dimensions of the grid.
For output files, what lies between \begin{tikzpicture} and \end{tikzpicture} is of the form \gridcross{_, ... _} where _, ... _ is a comma-separated sequence of v-dim strings, each of length h-dim, to denote from top to bottom each of the rows of the filled grid, using *s to represent black squares, and using uppercase letters for the grid’s entries.
In .tex files, there can be spaces between tokens almost everywhere (the pas-crosswords package actually prevents spaces to be used around some of the / characters). Also, in .tex files, the leftmost occurrence of a % marks the beginning of a comment that runs from this symbol included all the way to the end of the physical line, including the \n character. This allows one to have many physical lines to represent a unique logical line, and can be used to, for instance, have \blackcases{_/_, ..., _/_}, \words[v]{_/_/_, ..., _/_/_}, \words[h]{_/_/_, ..., _/_/_} and \gridcross{_, ... _} split over more than one physical line and improve readability. It is therefore advisable to process a .tex file in such a way that its content is captured as a single string with all space removed, before searching for patterns of interest in this string.
2.2 Analysing a grid (3 marks)
Your program will allow Crossword objects to be created from .tex files that you can assume are stored in the working directory, and whose contents satisfy all conditions spelled out in Section 2.1. Making use of the .tex files empty_grid_1.tex, empty_grid_2.tex, empty_grid_3.tex, partial_grid_1.tex, partial_grid_2.tex and partial_grid_3.tex, having for associated .pdf files empty_grid_1.pdf, empty_grid_2.pdf, empty_grid_3.pdf, partial_grid_1.pdf, partial_grid_2.pdf and partial_grid_3.pdf, here is a possible interaction.
Passing as argument to print() a denotation of a Crossword object results in an output of the kind A grid of width _ and height _, with _ black case[s], filled with _ letter[s],
with _ complete vertical word[s] and _ complete horizontal word[s]. where
• the first occurrence of _ is a number that represents the horizontal dimension of the grid, 3

• the second occurrence of _ is a number that represents the vertical dimension of the grid,
• the third occurrence of _ is no, 1 or a number at least equal to 2 that represents the number n of
black cases in the grid (of course it is case if n = 1 and cases otherwise),
• the fourth occurrence of _ is no, 1 or a number at least equal to 2 that represents the number n of
letters alredy placed in the grid (of course it is letter if n = 1 and letters otherwise),
• the fifth occurrence of _ is no, 1 or a number at least equal to 2 that represents the number n of
vertical words in the grid (of course it is word if n = 1 and words otherwise), and
• the sixth occurrence of _ is no, 1 or a number at least equal to 2 that represents the number n of
horizontal words in the grid (of course it is word if n = 1 and words otherwise).
2.3 Filling in a grid with given words (5 marks)
Crossword objects can call the fill_with_given_words() method, that takes two arguments.
• First, the name of a .txt file, meant to exist in the working directory and store a number of words, one word per line (without empty line, without space on any line). You can assume that the file indeed exists and has the expected contents. The file could be empty, and there could be more than one occurrence of a given word.
• Second, the name of a .tex file, meant to store a representation of a solution in case a solution exists.
The aim is to complete all missing entries precisely with the words stored in the file provided as first argument; so there should be as many words in the file as there are incomplete words in the grid; words do not have to be distinct in the file, because a given word can appear more than once in a grid.
If the task is impossible, then the method prints out:
Hey, it can't be filled with these words!
Otherwise, the method prints out:
I filled it!
Result captured in _.
where _ is the name of the .tex file that has been provided as argument to the method. The solution that has been discovered is stored in that file. If the file does not exist then it is created, in the working directory; if it does exist then it is overwritten. There could be more than one solution; only one solution is sought after, and any correct solution is acceptable. In any case, the method returns None.
Here is a possible interaction.
• The .tex files that have been created or overwritten during this interaction are
– filled_empty_grid_2.tex,
– filled_empty_grid_3.tex and – filled_partial_grid_2.tex.
• The associated .pdf files are
– filled_empty_grid_2.pdf,
– filled_empty_grid_3.pdf and – filled_partial_grid_2.pdf.
It is advisable to make sure that the spaces in the .tex files produced during the interaction are exactly as shown. Still, whitespace will be ignored for assessment purposes, but of course, all other nonspace characters have to be exactly the same, character for character.
4

2.4 Solving a crossword (5 marks)
Crossword objects can call the solve() method, that takes as argument the name of a .tex file, meant to store a representation of a solution in case a solution exists.
The aim is to complete all missing entries with words from the file dictionary.txt. That file is provided, meant to be stored in the working directory, and you can assume that this is the case indeed. A word in dictionary.txt could be used more than once, because a given word can appear more than once in a grid. The grid could already contain complete words that are not in dictionary.txt. This is fine. It should not be checked that any complete word in the input grid is in dictionary.txt; this might not be the case, and that is fine. But any incomplete or missing word has to be one from dictionary.txt.
If the task is impossible, then the method prints out:
Hey, it can't be solved!
Otherwise, the method prints out:
I solved it!
Result captured in _.
where _ is the name of the .tex file that has been provided as argument to the method. The solution that has been discovered is stored in that file. If the file does not exist then it is created, in the working directory; if it does exist then it is overwritten. There could be more than one solution; only one solution is sought after, and any correct solution is acceptable. In any case, the method returns None.
Here is a possible interaction.
• The .tex files that have been created or overwritten during this interaction are
– solved_empty_grid_1.tex,
– solved_empty_grid_2.tex,
– solved_partial_grid_1.tex and – solved_partial_grid_3.tex.
• The associated .pdf files are
– solved_empty_grid_1.pdf,
– solved_empty_grid_2.pdf,
– solved_partial_grid_1.pdf and – solved_partial_grid_3.pdf.
It is advisable to make sure that the spaces in the .tex files produced during the interaction are exactly as shown. Still, whitespace will be ignored for assessment purposes, but of course, all other nonspace characters have to be exactly the same, character for character.


請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp




 

掃一掃在手機打開當前頁
  • 上一篇:代做CS202、代寫python/Java語言程序
  • 下一篇:CCIT4020代做、代寫c/c++,Java程序設計
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    2025年10月份更新拼多多改銷助手小象助手多多出評軟件
    2025年10月份更新拼多多改銷助手小象助手多
    有限元分析 CAE仿真分析服務-企業/產品研發/客戶要求/設計優化
    有限元分析 CAE仿真分析服務-企業/產品研發
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    出評 開團工具
    出評 開團工具
    挖掘機濾芯提升發動機性能
    挖掘機濾芯提升發動機性能
    海信羅馬假日洗衣機亮相AWE  復古美學與現代科技完美結合
    海信羅馬假日洗衣機亮相AWE 復古美學與現代
    合肥機場巴士4號線
    合肥機場巴士4號線
    合肥機場巴士3號線
    合肥機場巴士3號線
  • 短信驗證碼 trae 豆包網頁版入口 目錄網 排行網

    關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

          9000px;">

                99视频国产精品| 国产调教视频一区| 成人激情校园春色| 国产日韩精品视频一区| 久久99精品久久只有精品| 精品国产一区二区三区av性色 | 日韩视频在线你懂得| 天天av天天翘天天综合网| 51久久夜色精品国产麻豆| 国内精品不卡在线| 国产精品久久毛片| 欧美日韩国产一级二级| 狠狠v欧美v日韩v亚洲ⅴ| 中文字幕欧美日韩一区| 欧美老肥妇做.爰bbww视频| 国产精品2024| 丝袜美腿高跟呻吟高潮一区| 久久精品日韩一区二区三区| 欧美日韩不卡视频| 91伊人久久大香线蕉| 久久成人精品无人区| 亚洲乱码精品一二三四区日韩在线| 91精品国产全国免费观看| 波多野结衣精品在线| 秋霞成人午夜伦在线观看| 国产精品美女久久久久久| 欧美精选一区二区| caoporm超碰国产精品| 热久久久久久久| 亚洲欧美日韩一区二区| 欧美大白屁股肥臀xxxxxx| 一本大道久久a久久综合| 国产91富婆露脸刺激对白| 老色鬼精品视频在线观看播放| 亚洲精品久久7777| 中文字幕av免费专区久久| 日韩视频免费直播| 欧美日韩精品一区二区| 在线亚洲一区二区| 99热这里都是精品| 国产91富婆露脸刺激对白| 韩国成人精品a∨在线观看| 五月激情综合色| 亚洲成av人片观看| 一区二区三区精品视频| 亚洲女厕所小便bbb| 国产精品区一区二区三区| 久久综合色8888| 欧美精品一区二区三区蜜桃视频 | 亚洲精品一区二区三区精华液| 色噜噜狠狠色综合欧洲selulu| 成人性生交大片免费看中文| 国产aⅴ综合色| 国产精品中文字幕一区二区三区| 久久精品国产一区二区三区免费看 | 国产精品伦理一区二区| 国产三级欧美三级日产三级99 | 国产精品99久| 国产乱码一区二区三区| 国产一区二三区好的| 国产综合色视频| 国产精品91xxx| 91丨九色丨黑人外教| 在线视频中文字幕一区二区| 在线观看视频一区二区欧美日韩| 色呦呦网站一区| 欧美欧美午夜aⅴ在线观看| 日韩亚洲欧美一区二区三区| 久久你懂得1024| 中文字幕一区二区三区乱码在线| 亚洲欧洲一区二区在线播放| 亚洲乱码国产乱码精品精可以看 | 欧美专区日韩专区| 欧美一区二区在线看| 久久久久亚洲蜜桃| 亚洲精品国产视频| 日本女优在线视频一区二区| 国产在线不卡视频| 91在线国产福利| 在线成人免费视频| 国产精品毛片大码女人| 一区二区三区精品在线观看| 日本美女一区二区三区视频| 国产精品中文字幕欧美| 欧美午夜影院一区| 久久久亚洲精品一区二区三区| 国产精品乱码人人做人人爱| 三级在线观看一区二区| 国产成人综合自拍| 91精品国产综合久久久久久久久久| 国产欧美精品一区aⅴ影院| 一级做a爱片久久| 国产成人精品一区二区三区网站观看| 欧美制服丝袜第一页| 欧美韩日一区二区三区四区| 日韩高清不卡在线| 欧美专区日韩专区| 国产精品乱人伦| 精品一区二区三区免费观看| 欧美体内she精高潮| 国产精品剧情在线亚洲| 麻豆国产精品一区二区三区| 在线精品视频小说1| 国产精品久久久久久久久免费相片 | 国产一区二区三区四区在线观看| 日本高清不卡aⅴ免费网站| 国产欧美日韩一区二区三区在线观看| 日韩精品欧美精品| 欧美日韩激情在线| 亚洲久草在线视频| 91美女片黄在线观看91美女| 2020国产精品久久精品美国| 日本va欧美va精品| 欧美日本国产视频| 亚洲成人免费观看| 欧美日本一区二区三区四区| 亚洲第一激情av| 欧美性极品少妇| 亚洲一线二线三线久久久| 色妞www精品视频| 又紧又大又爽精品一区二区| 91在线精品秘密一区二区| 国产精品不卡一区二区三区| 成人毛片在线观看| 亚洲视频一二区| 色婷婷久久综合| 亚洲一区国产视频| 欧美日韩一级黄| 男男视频亚洲欧美| 日韩欧美三级在线| 国产精品综合视频| 一色屋精品亚洲香蕉网站| 972aa.com艺术欧美| 亚洲欧美日韩国产成人精品影院| 色综合一区二区三区| 亚洲线精品一区二区三区八戒| 欧美日韩aaa| 加勒比av一区二区| 国产精品视频你懂的| 91高清在线观看| 男女视频一区二区| 国产午夜久久久久| 色婷婷综合激情| 精品影院一区二区久久久| 国产精品乱人伦| 欧美日韩成人综合天天影院| 精品亚洲porn| 亚洲乱码国产乱码精品精可以看 | 中文字幕第一区| 日本二三区不卡| 激情小说亚洲一区| 国产精品国产三级国产aⅴ入口| 99久久777色| 另类小说欧美激情| 最新久久zyz资源站| 欧美精品aⅴ在线视频| 国产一区 二区 三区一级| 亚洲免费观看高清在线观看| 日韩视频在线一区二区| 风流少妇一区二区| 午夜欧美视频在线观看| 中文久久乱码一区二区| 欧美性三三影院| 国产福利一区二区| 日本成人在线电影网| 亚洲三级电影网站| 久久这里只有精品6| 色综合天天综合狠狠| 国产一区在线看| 亚洲福利视频三区| 欧美激情自拍偷拍| 日韩欧美国产一区二区三区| 一本一道综合狠狠老| 国产一区二区免费在线| 亚洲福利一二三区| 亚洲色图都市小说| 国产视频一区在线播放| 日韩女优av电影在线观看| 色婷婷综合久久久中文字幕| 国产伦精品一区二区三区免费迷| 亚洲电影欧美电影有声小说| 亚洲欧洲日产国码二区| 久久久久久久久免费| 欧美日韩国产a| 欧美日韩一级片在线观看| 91免费国产视频网站| voyeur盗摄精品| 国产成人av自拍| 国产精品一区二区黑丝| 激情五月婷婷综合网| 视频在线观看国产精品| 午夜国产不卡在线观看视频| 亚洲午夜一区二区三区| 一区av在线播放| 性做久久久久久免费观看| 亚洲影视在线观看| 性做久久久久久久久| 亚洲成人高清在线| 午夜私人影院久久久久| 日韩中文字幕区一区有砖一区|