microsoft/qdk

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
copilot/replace-qsharp-with-qdk-python-tests

Branches

Tags

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

Clone

HTTPS

Download ZIP

katas/content/key_distribution/random_array/Placeholder.qs

10lines · modecode

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