diff options
Diffstat (limited to 'notebooks/data_structures.ipynb')
-rw-r--r-- | notebooks/data_structures.ipynb | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/notebooks/data_structures.ipynb b/notebooks/data_structures.ipynb index f116cf5..370c569 100644 --- a/notebooks/data_structures.ipynb +++ b/notebooks/data_structures.ipynb @@ -5,7 +5,8 @@ "metadata": {}, "source": [ "# ADT - Stack\n", - "Push and pop methods." + "Push and pop methods. \n", + "Primitively, we consider the stack and queue ADTs with a simple array. \n" ] }, { @@ -112,7 +113,15 @@ "name": "python3" }, "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", "version": "3.12.8" } }, |