Continue to use the Dogs.csv data set to search for the largest value in the maximum weight column. This program already loops through the entire column. Add the blocks to search for the greatest value in the column. Then the program should output the following result.
The largest dog weight is 200
Coding:
Hotkey Shortcuts
Move BlocksUP or DOWN or TAB
Run Program ALT + SHIFT + R
Stop Program ALT + SHIFT + S
Hide Tray ALT + SHIFT + X
Zoom In ALT + +
Zoom Out ALT + -
Open Help ALT + SHIFT + H
Navigate to Tray ALT + 1
Navigate to Blocks ALT + 2
Enter Navigation Mode SHIFT + ENTER
Blocks
Hint
Great job!
Try again
The code blocks you need are in the tray. Your program should loop through each value in the column, comparing each value to the current max. If the value exceeds the max value, save it as the new max value found. Once you have looped through the entire column, output the max value.