microsoft/qdk

Public

mirrored from https://github.com/microsoft/qdkAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
alex/pythontelem

Branches

Tags

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

Clone

HTTPS

Download ZIP

katas/content/key_distribution/shared_key/Placeholder.qs

10lines · modecode

1namespace Kata {
2 function GenerateSharedKey(basesAlice : Bool[], basesBob : Bool[], bits : Bool[]) : Bool[] {
3 // Create a mutable array variable for storing the key.
4 mutable key = [];
5
6 // Implement your solution here...
7
8 return key;
9 }
10}
11