Created
September 14, 2017 02:28
-
-
Save dalejandroramirez/94410e8541bc8c08224e8fe6ee440f49 to your computer and use it in GitHub Desktop.
dado un arreglo de enteros dice la cantidad de enteros que estan entre el min y el max del arreglo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def makeArrayConsecutive2(statues): | |
m=(max(statues)-min(statues)-len(statues)+1) | |
return(m) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment