" Do not use any imports,any dictionaries or dictionary methods. Do not use try-except statements"
import csvfrom typing import TextIOdef maps_evaluation(maps_file: TextIO) -> list[list[list[int]]]:"""Given an open csv file , read the file according to thespecification and return all the elevation maps stored within the file.IMPORTANT: the given argument to the function is an OPEN file ,you will not need to open it again, and can begin performing standard fileoperations on it.The file will be structured as follows:- The first line will contain one number, which will denote the numberof elevation maps stored within this file.- The next n lines will contain two numbers each, "r" and "c", whichare the number of rows and columns of each elevation map.- The rest of the data will then be comprised of the elevation mapdata, which will follow one another in sequence, with no spaces inbetween.For an example, see "sample_data.csv"."""
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here