microsoft/qdk

Public

mirrored fromhttps://github.com/microsoft/qdkAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
fedimser/test-utils-2

Branches

Tags

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

Clone

HTTPS

Download ZIP

katas/content/key_distribution/random_array/Placeholder.qs

12lines · modecode

1namespace Kata {
2 import Std.Random.*;
3
4 operation RandomArray(N : Int) : Bool[] {
5 // Create a mutable array variable for storing the return value.
6 mutable s = [];
7
8 // Implement your solution here...
9
10 return s;
11 }
12}
13