microsoft/qdk

Public

mirrored fromhttps://github.com/microsoft/qdkAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
alex/pythontelem

Branches

Tags

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

Clone

HTTPS

Download ZIP

katas/content/getting_started/flip_qubit/Solution.qs

6lines · modecode

1namespace Kata {
2 operation FlipQubit(q : Qubit) : Unit is Adj + Ctl {
3 // Perform a "bit flip" on the qubit by applying the X gate.
4 X(q);
5 }
6}
7