Problem Statement
Using only Clifford gates and gate,
implement an oracle satisfying on a quantum circuit with qubit.
Here, denotes the Hermitian transpose (inverse operation).
Constraints
- Only Clifford gates and gate can be used.
- For this problem, the
.inverse()method cannot be used. - The submitted code must follow the specified format:
from qiskit import QuantumCircuit
def solve() -> QuantumCircuit:
qc = QuantumCircuit(1)
# Write your code here:
return qcHints
Open
- Clifford gates (Wikipedia)
- Well-known Clifford gates include , , , , , , among others.