# Algorithm for mins_and_maxes hw # url problem # for each row in the dataset, tell me the max value and the min value # import url # BASE_FOLDER = ... (something like 'https://www.cs1112.edu/texts/') # file = ... (name of dataset) -> gotten through input # link = BASE_FOLDER + file # dataset = url.get_dataset( link ) # for row in dataset: # determine min value of the row # determine max value of the row # print( min value, max value ) # Hint: use the min and max functions on the list rows :) # Use the file mins_and_maxes.py for the HW # It won't work now though because the website isn't working # So write the code if you'd like to get started but hold off on texting until # the CS server works again!