microsoft/qdk

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v1.3.0

Branches

Tags

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

Clone

HTTPS

Download ZIP

katas/content/random_numbers/random_bit/Placeholder.qs

9lines · modecode

1namespace Kata {
2 operation RandomBit() : Int {
3 use q = Qubit();
4 // Implement your solution here...
5
6 return -1;
7 }
8
9}
10