Project RequirementsThe following minimums are required.1. Create the driver function (e.g. main()) to execute this program.2. Create a function (e.g. getMatrix()) to return a 5x5...

I have this assignment due tomorrow. If I can get any help with it.



Project Requirements The following minimums are required. 1. Create the driver function (e.g. main()) to execute this program. 2. Create a function (e.g. getMatrix()) to return a 5x5 two-dimensional list (e.g. matrix) of integers. Duplicates are allowed. 3. Create a function (e.g. getBoard()) to return a 5x5 two-dimensional list (e.g. board) of unique letters. Duplicates are not allowed. 4. Create a function (e.g. displayBoard(board)) to display the board table to the console. 5. Create a function (e.g. getIndices(board,letter)) to return the indices of the letter from the board. a. The function should search the board for the letter and return the indices (e.g. find letter ‘P’ then return (0,1)). b. If the letter is not found, the function should return another value (e.g. None) 6. Create a function (e.g. goodBye()) to exit the program. 7. Allow the user to select one letter at a time. 8. Use repetition structures (e.g. for loop, while loop) and decision structures (e.g. if, if-else) in your program. 9. Include the following information at the top of your program. """ Author: Your Name Date: mm/dd/yy Description: This program transfers the data from one matrix to another matrix. """ 10. There are many ways to solve this problem. Be creative but try to incorporate only the things you've learned in this class. Although I am not totally against you searching the internet for help, please avoid using advance techniques you might find online. If you do use any code found online or code that you did not create yourself, make sure to give credits and explain how the code works. The best way to become better is to try solving the problem by yourself in your own way. Submission 1. Take screen shots of your work and sample runs and put them in Word document 2. Submit your Word doc and application for grading. 3. Have fun programming! Sample Runs [A] [P] [J] [W] [M] [N] [Y] [V] [I] [C] [K] [T] [E] [R] [X] [F] [H] [B] [S] [L] [U] [Q] [D] [O] [G] Pick a letter (or -1 to quit): A [12] [P] [J] [W] [M] [N] [Y] [V] [I] [C] [K] [T] [E] [R] [X] [F] [H] [B] [S] [L] [U] [Q] [D] [O] [G] Pick a letter (or -1 to quit): I [12] [P] [J] [W] [M] [N] [Y] [V] [22] [C] [K] [T] [E] [R] [X] [F] [H] [B] [S] [L] [U] [Q] [D] [O] [G] Pick a letter (or -1 to quit): A Sorry, try again. Pick a letter (or -1 to quit): -1 ------------------------------ Thanks for playing. Good-bye! ------------------------------
Mar 14, 2023
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here