Skip to content

Commit 8b5eb13

Browse files
committed
Adding navigation texts
1 parent e3b4722 commit 8b5eb13

File tree

5 files changed

+58
-1
lines changed

5 files changed

+58
-1
lines changed

content.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717
* Tests
1818
* [Doubly Linked List Node](src/data-structures/doubly-linked-lists/__test__/doubly-linked-list-node.spec.js)
1919
* [Doubly Linked List Wrapper](src/data-structures/doubly-linked-lists/__test__/doubly-linked-list.spec.js)
20-
* **TODO:** List of exercises
20+
* **TODO:** List of exercises`]

src/data-structures/doubly-linked-lists/Doubly Linked Lists.ipynb

+9
Original file line numberDiff line numberDiff line change
@@ -1453,6 +1453,15 @@
14531453
"## Space Complexity\n",
14541454
"Linked lists have $O(n)$ space complexity."
14551455
]
1456+
},
1457+
{
1458+
"attachments": {},
1459+
"cell_type": "markdown",
1460+
"id": "fce69717",
1461+
"metadata": {},
1462+
"source": [
1463+
"[Back to Content](../../../content.md)"
1464+
]
14561465
}
14571466
],
14581467
"metadata": {

src/data-structures/singly-linked-lists/Linked Lists.ipynb

+9
Original file line numberDiff line numberDiff line change
@@ -1503,6 +1503,15 @@
15031503
"## Space Complexity\n",
15041504
"Linked lists have $O(n)$ space complexity."
15051505
]
1506+
},
1507+
{
1508+
"attachments": {},
1509+
"cell_type": "markdown",
1510+
"id": "8b32e57d",
1511+
"metadata": {},
1512+
"source": [
1513+
"[Back to Content](../../../content.md)"
1514+
]
15061515
}
15071516
],
15081517
"metadata": {

src/data-structures/singly-linked-lists/exercises/add-two-numbers/index.ipynb

+15
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
{
22
"cells": [
33
{
4+
"attachments": {},
45
"cell_type": "markdown",
56
"metadata": {},
67
"source": [
8+
"[Back to Content](../../../../../content.md)\n",
9+
"\n",
10+
"[Back to Singly Linked Lists Excersises](../README.md)\n",
11+
"\n",
712
"# Add Two Numbers\n",
813
"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",
914
"\n",
@@ -208,6 +213,16 @@
208213
"source": [
209214
"checkCase([9, 9, 9, 9, 9, 9, 9], [9, 9, 9, 9]);"
210215
]
216+
},
217+
{
218+
"attachments": {},
219+
"cell_type": "markdown",
220+
"metadata": {},
221+
"source": [
222+
"[Back to Content](../../../../../content.md)\n",
223+
"\n",
224+
"[Back to Singly Linked Lists Excersises](../README.md)"
225+
]
211226
}
212227
],
213228
"metadata": {

src/data-structures/singly-linked-lists/exercises/merge-two-sorted-lists/index.ipynb

+24
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
{
22
"cells": [
33
{
4+
"attachments": {},
45
"cell_type": "markdown",
56
"metadata": {},
67
"source": [
8+
"[Back to Content](../../../../../content.md)\n",
9+
"\n",
10+
"[Back to Singly Linked Lists Excersises](../README.md)\n",
711
"# Merge Two Sorted Lists (as nodes)\n",
812
"You are given the heads of two sorted linked lists `list1` and `list2`.\n",
913
"\n",
@@ -20,6 +24,7 @@
2024
]
2125
},
2226
{
27+
"attachments": {},
2328
"cell_type": "markdown",
2429
"metadata": {},
2530
"source": [
@@ -34,6 +39,7 @@
3439
]
3540
},
3641
{
42+
"attachments": {},
3743
"cell_type": "markdown",
3844
"metadata": {},
3945
"source": [
@@ -71,6 +77,7 @@
7177
]
7278
},
7379
{
80+
"attachments": {},
7481
"cell_type": "markdown",
7582
"metadata": {},
7683
"source": [
@@ -120,6 +127,7 @@
120127
]
121128
},
122129
{
130+
"attachments": {},
123131
"cell_type": "markdown",
124132
"metadata": {},
125133
"source": [
@@ -151,6 +159,7 @@
151159
]
152160
},
153161
{
162+
"attachments": {},
154163
"cell_type": "markdown",
155164
"metadata": {},
156165
"source": [
@@ -175,6 +184,7 @@
175184
]
176185
},
177186
{
187+
"attachments": {},
178188
"cell_type": "markdown",
179189
"metadata": {},
180190
"source": [
@@ -199,6 +209,7 @@
199209
]
200210
},
201211
{
212+
"attachments": {},
202213
"cell_type": "markdown",
203214
"metadata": {},
204215
"source": [
@@ -223,6 +234,7 @@
223234
]
224235
},
225236
{
237+
"attachments": {},
226238
"cell_type": "markdown",
227239
"metadata": {},
228240
"source": [
@@ -247,6 +259,7 @@
247259
]
248260
},
249261
{
262+
"attachments": {},
250263
"cell_type": "markdown",
251264
"metadata": {},
252265
"source": [
@@ -271,6 +284,7 @@
271284
]
272285
},
273286
{
287+
"attachments": {},
274288
"cell_type": "markdown",
275289
"metadata": {},
276290
"source": [
@@ -293,6 +307,16 @@
293307
"source": [
294308
"checkCase([1, 2, 3, 9, 11, 12, 13, 14], [-1, 0, 1, 7, 8, 10]);"
295309
]
310+
},
311+
{
312+
"attachments": {},
313+
"cell_type": "markdown",
314+
"metadata": {},
315+
"source": [
316+
"[Back to Content](../../../../../content.md)\n",
317+
"\n",
318+
"[Back to Singly Linked Lists Excersises](../README.md)"
319+
]
296320
}
297321
],
298322
"metadata": {

0 commit comments

Comments
 (0)