Question: Implement the function fancyGrid ( ) from the bottom of 1 4 code.py and submit to Gradescope. Run your entire file in IDLE first to
Implement the function fancyGrid from the bottom of
code.py and submit to
Gradescope. Run your entire file in IDLE first to ensure there are no Runtime
Errors. Rename your file to
daycoding.py before submitting. Note the following
differences text in red between the function description in
description below:
and the function
Function Name:
Parameters:
list of list
Returns:
bool
Description: A Fancy Grid is a grid with rows and columns that has the following
properties:
The grid contains only the numbers to
The sum of each row and the sum oheach column all add up to the same number.
We will simulate a Fancy Grid using a twodimensional list. Write a function that accepts
a twodimensional list as an argument and returns True if the passed in grid is a Fancy
Grid, or False otherwise.
Test Cases:
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
