microsoft/qdk

Public

mirrored from https://github.com/microsoft/qdkAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
sccarda/PythonApiDocs

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

katas/content/marking_oracles/parity/Solution.qs

7lines · modecode

1namespace Kata {
2 operation Oracle_Parity(x : Qubit[], y : Qubit) : Unit is Adj + Ctl {
3 for xi in x {
4 CNOT(xi, y);
5 }
6 }
7}
8