Skip to content

Commit

Permalink
Adding navigation texts
Browse files Browse the repository at this point in the history
  • Loading branch information
mesirendon committed May 22, 2023
1 parent e3b4722 commit 8b5eb13
Show file tree
Hide file tree
Showing 5 changed files with 58 additions and 1 deletion.
2 changes: 1 addition & 1 deletion content.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
* Tests
* [Doubly Linked List Node](src/data-structures/doubly-linked-lists/__test__/doubly-linked-list-node.spec.js)
* [Doubly Linked List Wrapper](src/data-structures/doubly-linked-lists/__test__/doubly-linked-list.spec.js)
* **TODO:** List of exercises
* **TODO:** List of exercises`]
Original file line number Diff line number Diff line change
Expand Up @@ -1453,6 +1453,15 @@
"## Space Complexity\n",
"Linked lists have $O(n)$ space complexity."
]
},
{
"attachments": {},
"cell_type": "markdown",
"id": "fce69717",
"metadata": {},
"source": [
"[Back to Content](../../../content.md)"
]
}
],
"metadata": {
Expand Down
9 changes: 9 additions & 0 deletions src/data-structures/singly-linked-lists/Linked Lists.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -1503,6 +1503,15 @@
"## Space Complexity\n",
"Linked lists have $O(n)$ space complexity."
]
},
{
"attachments": {},
"cell_type": "markdown",
"id": "8b32e57d",
"metadata": {},
"source": [
"[Back to Content](../../../content.md)"
]
}
],
"metadata": {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
{
"cells": [
{
"attachments": {},
"cell_type": "markdown",
"metadata": {},
"source": [
"[Back to Content](../../../../../content.md)\n",
"\n",
"[Back to Singly Linked Lists Excersises](../README.md)\n",
"\n",
"# Add Two Numbers\n",
"You are given two **non-empty** linked lists representing two non-negative integers. The digits are stored in **reverse order**, and each of their nodes contains a single digit. Add the two numbers and return the sum as a linked list.\n",
"\n",
Expand Down Expand Up @@ -208,6 +213,16 @@
"source": [
"checkCase([9, 9, 9, 9, 9, 9, 9], [9, 9, 9, 9]);"
]
},
{
"attachments": {},
"cell_type": "markdown",
"metadata": {},
"source": [
"[Back to Content](../../../../../content.md)\n",
"\n",
"[Back to Singly Linked Lists Excersises](../README.md)"
]
}
],
"metadata": {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
{
"cells": [
{
"attachments": {},
"cell_type": "markdown",
"metadata": {},
"source": [
"[Back to Content](../../../../../content.md)\n",
"\n",
"[Back to Singly Linked Lists Excersises](../README.md)\n",
"# Merge Two Sorted Lists (as nodes)\n",
"You are given the heads of two sorted linked lists `list1` and `list2`.\n",
"\n",
Expand All @@ -20,6 +24,7 @@
]
},
{
"attachments": {},
"cell_type": "markdown",
"metadata": {},
"source": [
Expand All @@ -34,6 +39,7 @@
]
},
{
"attachments": {},
"cell_type": "markdown",
"metadata": {},
"source": [
Expand Down Expand Up @@ -71,6 +77,7 @@
]
},
{
"attachments": {},
"cell_type": "markdown",
"metadata": {},
"source": [
Expand Down Expand Up @@ -120,6 +127,7 @@
]
},
{
"attachments": {},
"cell_type": "markdown",
"metadata": {},
"source": [
Expand Down Expand Up @@ -151,6 +159,7 @@
]
},
{
"attachments": {},
"cell_type": "markdown",
"metadata": {},
"source": [
Expand All @@ -175,6 +184,7 @@
]
},
{
"attachments": {},
"cell_type": "markdown",
"metadata": {},
"source": [
Expand All @@ -199,6 +209,7 @@
]
},
{
"attachments": {},
"cell_type": "markdown",
"metadata": {},
"source": [
Expand All @@ -223,6 +234,7 @@
]
},
{
"attachments": {},
"cell_type": "markdown",
"metadata": {},
"source": [
Expand All @@ -247,6 +259,7 @@
]
},
{
"attachments": {},
"cell_type": "markdown",
"metadata": {},
"source": [
Expand All @@ -271,6 +284,7 @@
]
},
{
"attachments": {},
"cell_type": "markdown",
"metadata": {},
"source": [
Expand All @@ -293,6 +307,16 @@
"source": [
"checkCase([1, 2, 3, 9, 11, 12, 13, 14], [-1, 0, 1, 7, 8, 10]);"
]
},
{
"attachments": {},
"cell_type": "markdown",
"metadata": {},
"source": [
"[Back to Content](../../../../../content.md)\n",
"\n",
"[Back to Singly Linked Lists Excersises](../README.md)"
]
}
],
"metadata": {
Expand Down

0 comments on commit 8b5eb13

Please sign in to comment.