''' Purpose: solve in_all test problem ''' # specify local module resource from url import get_contents # specify link where to find web file of numners link = "http://www.cs.virginia.edu/~cs1112/numbers.txt" # Suggested algorithm # get contents of the web file # convert contents into a list of strings # build a list of numbers out of the strings # determine the largest number in the list # print the largest number