microsoft/qdk

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
dmitryv/select-updated

Branches

Tags

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

Clone

HTTPS

Download ZIP

katas/content/oracles/or_oracle/solution.qs

6lines · modecode

1namespace Kata {
2 operation Or_Oracle(x : Qubit[], y : Qubit) : Unit is Adj + Ctl {
3 X(y);
4 ApplyControlledOnInt(0, X, x, y);
5 }
6}
7