Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
115 changes: 113 additions & 2 deletions algorithms/bernstein_vazirani/bernstein_vazirani.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -213,20 +213,131 @@
},
{
"cell_type": "code",
"execution_count": 5,
"execution_count": 4,
"id": "5aed0709-6746-4e30-9237-e01444d2cb43",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": []
"text": [
"Opening: https://platform.classiq.io/circuit/2uaKWqgcqvD7nSo09MQ9fAw2pa4?version=0.70.0\n"
]
}
],
"source": [
"show(qprog)"
]
},
{
"cell_type": "code",
"execution_count": 1,
"id": "ed964278-f433-4df5-88fc-12c35f6659a4",
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"\n",
" <iframe\n",
" width=\"700\"\n",
" height=\"350\"\n",
" src=\"https://platform.classiq.io/circuit/2uaKWqgcqvD7nSo09MQ9fAw2pa4?version=0.70.0\"\n",
" frameborder=\"0\"\n",
" allowfullscreen\n",
" \n",
" ></iframe>\n",
" "
],
"text/plain": [
"<IPython.lib.display.IFrame at 0x7f4821cb7350>"
]
},
"execution_count": 1,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"from IPython.display import IFrame\n",
"\n",
"IFrame(\n",
" \"https://platform.classiq.io/circuit/2uaKWqgcqvD7nSo09MQ9fAw2pa4?version=0.70.0\",\n",
" width=700,\n",
" height=350,\n",
")"
]
},
{
"cell_type": "code",
"execution_count": 2,
"id": "5c1a0a79-c84d-4be6-942c-48eebd5e87af",
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"\n",
" <iframe\n",
" width=\"700\"\n",
" height=\"350\"\n",
" src=\"https://stackoverflow.com\"\n",
" frameborder=\"0\"\n",
" allowfullscreen\n",
" \n",
" ></iframe>\n",
" "
],
"text/plain": [
"<IPython.lib.display.IFrame at 0x7f4820582bd0>"
]
},
"execution_count": 2,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"from IPython.display import IFrame\n",
"\n",
"IFrame(\"https://stackoverflow.com\", width=700, height=350)"
]
},
{
"cell_type": "code",
"execution_count": 3,
"id": "d92319c3-0e50-4429-8e32-fc9db566468f",
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"\n",
" <iframe\n",
" width=\"700\"\n",
" height=\"350\"\n",
" src=\"http://example.com\"\n",
" frameborder=\"0\"\n",
" allowfullscreen\n",
" \n",
" ></iframe>\n",
" "
],
"text/plain": [
"<IPython.lib.display.IFrame at 0x7f4820761c50>"
]
},
"execution_count": 3,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"from IPython.display import IFrame\n",
"\n",
"IFrame(\"http://example.com\", width=700, height=350)"
]
},
{
"cell_type": "markdown",
"id": "13b5c366-c2d9-4ee3-9f33-c5d033d34897",
Expand Down