Skip to content

Instantly share code, notes, and snippets.

@rjz
Created May 16, 2012 17:05
Show Gist options
  • Save rjz/2712241 to your computer and use it in GitHub Desktop.
Save rjz/2712241 to your computer and use it in GitHub Desktop.
Google v. Oracle
def range_check(num, min, max):
return num <= max and num >= min;
print range_check(3, 0, 10) # True
print range_check(13, 0, 10) # False
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment