microsoft/qdk

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v1.2.0

Branches

Tags

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

Clone

HTTPS

Download ZIP

katas/content/oracles/kth_bit_oracle/Solution.qs

5lines · modecode

1namespace Kata {
2 operation KthBit_Oracle(x : Qubit[], k : Int) : Unit is Adj + Ctl {
3 Z(x[k]);
4 }
5}
6