Changed sys.maxint to sys.maxsize for Python 3 compatibility.

This commit is contained in:
Donne Martin
2015-07-06 06:35:46 -04:00
parent 73924c279a
commit b57ca00bb2
3 changed files with 6 additions and 8 deletions

View File

@@ -34,10 +34,9 @@
"source": [
"## Constraints\n",
"\n",
"* Can we assume this is a stack of ints?\n",
" * Yes\n",
"* If we call this function on an empty stack, can we return max int?\n",
"* If we call this function on an empty stack, can we return maxsize?\n",
" * Yes\n",
"* Can we assume we already have a stack class that can be used for this problem?\n",
" * Yes"
@@ -158,7 +157,7 @@
" assert_equal(stack.pop(), 1)\n",
" assert_equal(stack.min(), 5)\n",
" assert_equal(stack.pop(), 5)\n",
" assert_equal(stack.min(), sys.maxint)\n",
" assert_equal(stack.min(), sys.maxsize)\n",
"\n",
" print('Test: Pop empty stack')\n",
" assert_equal(stack.pop(), None)\n",