diff options
author | Zhongheng Liu <z.liu@outlook.com.gr> | 2025-02-25 16:42:46 +0200 |
---|---|---|
committer | Zhongheng Liu <z.liu@outlook.com.gr> | 2025-02-25 16:42:46 +0200 |
commit | 52c676985e8a11b8f70ed3c6c00750c53a0e7eba (patch) | |
tree | 9caff0801d9959cc0e74359f1136cb2e6fe5f636 /notebooks/data_structures.ipynb | |
parent | 8834da60a01294fd509c7cebf3b129fcc378d152 (diff) | |
download | cs-y13-52c676985e8a11b8f70ed3c6c00750c53a0e7eba.tar.gz cs-y13-52c676985e8a11b8f70ed3c6c00750c53a0e7eba.tar.bz2 cs-y13-52c676985e8a11b8f70ed3c6c00750c53a0e7eba.zip |
feat: add more to jupyter notebook
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" } }, |