Changed discussions of NULL to None to be more Pythonic.

This commit is contained in:
Donne Martin
2015-07-06 05:44:06 -04:00
parent 29685c7b35
commit 47e6a23dde
11 changed files with 55 additions and 55 deletions

View File

@@ -85,7 +85,7 @@
"\n",
"### Pop\n",
"\n",
"* If stack is empty, return NULL\n",
"* If stack is empty, return None\n",
"* Else \n",
" * Save top's value\n",
" * Set top to top.next\n",
@@ -97,7 +97,7 @@
"\n",
"### Peek\n",
"\n",
"* If stack is empty, return NULL\n",
"* If stack is empty, return None\n",
"* Else return top's value\n",
"\n",
"Complexity:\n",