Skip to content

Commit abcec24

Browse files
committed
start #2 linkedList
1 parent 20d9d8f commit abcec24

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

leetcode_kuro_RnD.ipynb

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8927,6 +8927,35 @@
89278927
"# simple math solution based on algebra"
89288928
]
89298929
},
8930+
{
8931+
"cell_type": "code",
8932+
"execution_count": 36,
8933+
"metadata": {},
8934+
"outputs": [
8935+
{
8936+
"name": "stdout",
8937+
"output_type": "stream",
8938+
"text": [
8939+
"[3, 3] [3, 3]\n"
8940+
]
8941+
}
8942+
],
8943+
"source": [
8944+
"i = j = [3]\n",
8945+
"i += j\n",
8946+
"print(i, j)"
8947+
]
8948+
},
8949+
{
8950+
"cell_type": "code",
8951+
"execution_count": null,
8952+
"metadata": {},
8953+
"outputs": [],
8954+
"source": [
8955+
"# https://leetcode.com/problems/add-two-numbers/\n",
8956+
"\n"
8957+
]
8958+
},
89308959
{
89318960
"cell_type": "code",
89328961
"execution_count": 20,

0 commit comments

Comments
 (0)