microsoft/qdk

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v1.28.0

Branches

Tags

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

Clone

HTTPS

Download ZIP

katas/content/deutsch_jozsa/implement_bv/Placeholder.qs

11lines · modecode

1namespace Kata {
2 operation BernsteinVaziraniAlgorithm (N : Int, oracle : Qubit[] => Unit) : Int[] {
3 // Create a mutable array variable for storing the return value.
4 mutable s = [];
5
6 // Implement your solution here...
7
8
9 return s;
10 }
11}
12