id/email
password
forgot password | create account
about | help | code help+videos | done | prefs
CodingBat code practice

 

List-2 > big_diff
prev  |  next  |  chance

Given an array length 1 or more of ints, return the difference between the largest and smallest values in the array. Note: the built-in min(v1, v2) and max(v1, v2) functions return the smaller or larger of two values.


big_diff([10, 3, 5, 6]) → 7
big_diff([7, 2, 10, 9]) → 8
big_diff([2, 10, 7, 2]) → 8

...Save, Compile, Run (ctrl-enter)

def big_diff(nums):

Editor font size %:
Shorter output


Forget It! -- delete my code for this problem

Progress graphs:
 Your progress graph for this problem
 Random user progress graph for this problem
 Random Epic Progress Graph

Python Help

Difficulty: 206.0

Copyright Nick Parlante 2017 - privacy