Skip to content

Commit 625c09e

Browse files
Updates.
1 parent e09f22d commit 625c09e

File tree

2 files changed

+24
-3
lines changed

2 files changed

+24
-3
lines changed

.vscode/launch.json

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,31 @@
55
"version": "0.2.0",
66
"configurations": [
77
{
8-
"name": "helloq",
8+
"name": "hello",
99
"type": "python",
1010
"request": "launch",
11-
"program": "app.py",
11+
"program": "hello.py",
12+
"console": "integratedTerminal"
13+
},
14+
{
15+
"name": "even",
16+
"type": "python",
17+
"request": "launch",
18+
"program": "even.py",
19+
"console": "integratedTerminal"
20+
},
21+
{
22+
"name": "odd",
23+
"type": "python",
24+
"request": "launch",
25+
"program": "odd.py",
26+
"console": "integratedTerminal"
27+
},
28+
{
29+
"name": "magic-eight-ball",
30+
"type": "python",
31+
"request": "launch",
32+
"program": "magicball.py",
1233
"console": "integratedTerminal"
1334
}
1435
]

odd.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ def main():
77
execute.provider = None
88

99
# Generate the quantum circuit.
10-
qc = grover(oracle, None, 4)
10+
qc = grover(oracle, None, 3)
1111
print(qc.draw())
1212

1313
# Execute the quantum circuit.

0 commit comments

Comments
 (0)