-
Notifications
You must be signed in to change notification settings - Fork 2
statistics
bradendubois edited this page Nov 8, 2021
·
9 revisions
ID: statistics
Difficulty: 2.2
CPU Time: 1 second
Memory: 1024 MB
For each of the n cases, begin with some variables to track the max and min seen so far (initialized to something 1000000+ for min, -1000000 for max), and if the number read in is lower than the min seen so far, update it; same with the max. After this, output the min, max, and the difference between the two.