Cambios cgarcia

parent bb4b67a3
...@@ -836,16 +836,14 @@ ...@@ -836,16 +836,14 @@
}, },
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": 72, "execution_count": 73,
"metadata": {}, "metadata": {},
"outputs": [ "outputs": [
{ {
"name": "stdout", "name": "stdout",
"output_type": "stream", "output_type": "stream",
"text": [ "text": [
"[1, 1, 2, 3, 5, 8, 13]\n", "{34, 21, 55, 89}\n"
"{89, 34, 21, 55}\n",
"bla bla bla\n"
] ]
} }
], ],
...@@ -854,12 +852,8 @@ ...@@ -854,12 +852,8 @@
"b = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13]\n", "b = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13]\n",
"\n", "\n",
"coincide=[]\n", "coincide=[]\n",
"\n", "coincide=set(a).difference(b)\n",
"A=set(a)\n", "print(coincide)\n"
"B=set(b)\n",
"=A.difference(B)\n",
"print(C)\n",
"print(\"bla bla bla\")"
] ]
}, },
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment